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/:idcURLGET /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
idstringrequiredResource id from the corresponding list or create endpoint.
Response
One item.
itemobjectSame shape as list-scratchpad-items entries.
Errors
| 404 | scratchpad_item_not_found |