Fetch part of an item's data.
This route uses JSON pointer syntax to specify the data to return.
GET https://api.jsonpad.io/lists/{listId}/items/{itemId}/data/{pointer}curl https://api.jsonpad.io/lists/08d692f4-bbb7-4504-8e9a-8e0bee154bbb/items/ffa6f9fe-f563-4b09-b4c3-fe6c3a8c162c/data/name \
-H "x-api-token: <YOUR TOKEN>"listIdstringA list id or path name.itemIdstringAn item id or alias.pointerstringA JSON pointer to the field in the item's data that will be returned.versionstringhttps://api.jsonpad.io/lists/d82395cc-a5a2-4087-b4ce-15b8ff91ca6e/items/3166322c-a62b-4e48-a730-3c611567d721/data/name?version=1Fetch a specific version of the item. If not specified, the latest version will be returned.includeGuardedboolean?includeGuarded=trueInclude values hidden by guard indexes in the response. Can be true or false.
This only applies when the request is authenticated as an identity, and only to the items that identity owns. Without an identity, guarded values stay hidden.
Defaults to false.
x-api-tokenstringYour API token.if-modified-sinceAn ISO 8601 date.
If the item hasn't been updated since this date, we return an empty 304 ("Not modified") response, and the request will not be counted towards any active rate limits.
if-none-matchA SHA-256 hash.
If this matches the item's ETag hash, we return an empty 304 ("Not modified") response, and the request will not be counted towards any active rate limits.
x-identity-tokenstringAn identity token.x-identity-groupstringAn identity group.No request body
Given that the item contains the following data:
{name: "John Doe"age: 30locations: [0: {city: "New York"state: "NY"}1: {city: "Los Angeles"state: "CA"}]}With pointer set to /locations:
[0: {city: "New York"state: "NY"}1: {city: "Los Angeles"state: "CA"}]etagaf2bdbe1aa9b6ec1e2ade1d694f41fc71a831d0268e9891562113d8a62add1bfA SHA-256 hash of the item.last-modified2026-09-23T21:08:20.126ZThe date this item was last modified.