Fetch a specific item's data.
GET https://api.jsonpad.io/lists/{listId}/items/{itemId}/datacurl https://api.jsonpad.io/lists/ba78db7a-2b7c-45af-ad47-296b8d78c264/items/62624c92-4742-4f4b-bbf3-12ec32bf4afa/data \
-H "x-api-token: <YOUR TOKEN>"listIdstringA list id or path name.itemIdstringAn item id or alias.versionstringhttps://api.jsonpad.io/lists/5ae3926f-1cee-4bf5-852d-a2d1cc793db9/items/0c5fb9bb-fa08-467f-aac2-2f930796bd3c/data?version=1Fetch a specific version of the item. If not specified, the latest version will be returned.pathstringhttps://api.jsonpad.io/lists/d2c13feb-0bfc-447d-a02e-8733b48af054/items/b2b96d2b-3841-44d2-bd14-3a254fca0e15/data?path=%24.locations%5B%2A%5D.stateFetch only the specified path from the item's data.
This parameter uses JSON path syntax to specify the data to fetch.
Given the JSON path: $.locations[*].state, and the following item data:
{name: "John Doe"age: 30locations: [0: {city: "New York"state: "NY"}1: {city: "Los Angeles"state: "CA"}]}The JSON path will be applied to the item's data, resulting in:
[0: "NY"1: "CA"]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
{name: "John Doe"age: 30locations: [0: {city: "New York"state: "NY"}1: {city: "Los Angeles"state: "CA"}]}etagaf2bdbe1aa9b6ec1e2ade1d694f41fc71a831d0268e9891562113d8a62add1bfA SHA-256 hash of the item.last-modified2026-09-23T21:08:19.311ZThe date this item was last modified.