View an item

Fetch a specific item with or without its data.

GET https://api.jsonpad.io/lists/{listId}/items/{itemId}

Example

cURL
123curl https://api.jsonpad.io/lists/c58be4fa-4225-4439-a350-dc7f7f20337b/items/e098d442-0d70-42a9-8e7a-fadee5ea9886 \
  -H "Content-Type: application/json" \
  -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    listIdstringA list id or path name.
  • required
    itemIdstringAn item id or alias.
  • optional
    includeDatabooleanhttps://api.jsonpad.io/lists/466f56da-bfcf-4d12-925e-ba6b09ff53ec/items/9764a4f0-52b2-4765-8071-ef3e00e6a73d?includeData=true

    Whether to include the item data in the response or not. Can be true or false.

    Defaults to true.

  • optional
    pathstringhttps://api.jsonpad.io/lists/b27bb2a0-cc1d-4b8e-907a-977f0464bf98/items/67d16d91-7b70-4271-bb23-269c7e224dd4?includeData=true&path=%24.locations%5B%2A%5D.state

    Fetch only the specified path from this item's data.

    This parameter uses JSON path syntax to specify the data to fetch.

  • optional
    versionstringhttps://api.jsonpad.io/lists/515cc2c0-a18e-4022-87c8-8666a5b33280/items/fccb142c-48d0-4ec7-aff8-e77248e5f575?version=1Fetch a specific version of the item. If not specified, the latest version will be returned.

Request headers

  • required
    x-api-tokenstringYour API token.
  • optional
    if-modified-since

    An 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.

  • optional
    if-none-match

    A 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.

  • optional
    x-identity-tokenstringAn identity token.
  • optional
    x-identity-groupstringAn identity group.

Request body

No request body

Response body

200 OK
{
id: "7483299f-129f-4d10-8e34-ae1cf90dc290"
createdAt: "2026-09-05T11:29:56.492Z"
updatedAt: "2026-09-05T11:29:56.492Z"
data: {
name: "John Doe"
age: 30
locations: [
0: {
city: "New York"
state: "NY"
}
1: {
city: "Los Angeles"
state: "CA"
}
]
}
version: "1"
readonly: false
activated: true
description: "This is a sample item"
size: 111
locked: false
}

Response headers

  • etagaf2bdbe1aa9b6ec1e2ade1d694f41fc71a831d0268e9891562113d8a62add1bfA SHA-256 hash of the item.
  • last-modified2026-09-05T11:29:56.492ZThe date this item was last modified.
2024-10-29