Scratchpad

Get scratchpad item

Reads one scratchpad item, org-scoped. (REST-only: no MCP tool equivalent; the MCP surface only exposes list/create/update/delete/promote.)

GET/api/public/scratchpad/:id
cURLGET /api/public/scratchpad/:id
curl "https://postiv.ai/api/public/scratchpad/ID_ID" \
  -H "Authorization: Bearer pk_postiv_..."
200Response
{
  "success": true,
  "item": {
    "id": "sp1...",
    "kind": "note",
    "content": "Competitor just launched a carousel maker",
    "status": "fresh"
  }
}

Authorization

Requires an organization API key with the scratchpad:read scope, sent as Authorization: Bearer or x-api-key.

Path parameters

idstringrequired

Resource id from the corresponding list or create endpoint.

Response

One item.

itemobject

Same shape as list-scratchpad-items entries.

Errors

404scratchpad_item_not_found