get
ObjectExtracts a single value from an object by field name. Supports dot-notation to access nested properties. Returns null if the field is missing.
Syntax
get:pathpathField name or dot-separated path to a nested field (e.g. address.city)Use cases
| Use case | Description | URL | |
|---|---|---|---|
| Extract a dog image URL | Pull the image URL string out of the Dog CEO API wrapper object. | https://httpip.es/api/pipe/fetch:https://dog.ceo/api/breeds/image/random|get:message | |
| Get country from IP info | Fetch IP geolocation and extract just the country name. | https://httpip.es/api/pipe/fetch:https://ipapi.co/json|get:country_name | |
| Read a nested address field | Use dot-notation to reach inside the nested address object. | https://httpip.es/api/pipe/fetch:https://jsonplaceholder.typicode.com/users/1|get:address.city | |
| Read deeply nested field | Navigate multiple levels deep to get a specific config value. | https://httpip.es/api/pipe/fetch:https://jsonplaceholder.typicode.com/users/1|get:address.geo.lat | |
| Repo owner login | Drill into the nested owner object to get just the username. | https://httpip.es/api/pipe/fetch:https://api.github.com/repos/octocat/Hello-World|get:owner.login |