entries
ObjectReturns an array of `{key, value}` objects from an input object — equivalent to Object.entries() but as structured data. Useful for iterating or filtering over key-value pairs.
Syntax
entriesUse cases
| Use case | Description | URL | |
|---|---|---|---|
| Inspect key-value pairs | Turn a JSON object into a readable list of {key, value} pairs. | https://httpip.es/api/pipe/fetch:https://jsonplaceholder.typicode.com/posts/1|entries | |
| Filter entries by key name | Convert to entries then filter to only pairs whose key contains "id". | https://httpip.es/api/pipe/fetch:https://jsonplaceholder.typicode.com/posts/1|entries|filter:key,contains,id | |
| Entries of a config object | Inspect every key-value pair in a nested config sub-object. | https://httpip.es/api/pipe/echo:{"host":"localhost","port":3000,"debug":true}|entries |