# List saved organic content

List saved organic corpus ids for the authenticated caller.

## Contract status

Preview contract: these routes and tools are implemented in the shared contract, but the public host, customer API access and OAuth flow have not been deployment verified.

## Endpoint: GET /v1/organic/saved

- Method: `GET`
- Path: `/v1/organic/saved`
- Authentication: Bearer API credential or OAuth access token
- Required scope: `context:read`
- MCP tool: `list_saved_organic_content`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `cursor` | query | opaque string, 1–512 | no | Cursor returned by the previous page. |
| `limit` | query | integer, 1–1000 | no | Page size; defaults to 1000. |

## Known errors

- 400 invalid_request for an invalid filter, identity or limit.
- 401 authentication_required for a missing or invalid credential.
- 402 subscription_required when access is not entitled.
- 403 authorization_required for a missing scope or unavailable preview access.
- 404 not_found when the record is outside the accessible catalogue.
- 429 rate_limited; honor Retry-After when present.

## Request

Returns saved ids, not full post cards. Follow nextCursor with the same limit.

```
curl --get 'https://api.peekpanda.com/v1/organic/saved' \
  --header "Authorization: Bearer $PEEKPANDA_TOKEN" \
  --header 'x-genviral-tenancy: personal'
```

## Response

bookmarkedIds are actor-owned organic corpus ids. nextCursor is null on the last page.

```
{
  "bookmarkedIds": [
    "organic-post-example"
  ],
  "nextCursor": null,
  "hasMore": false
}

```

## Source

Actor-owned bookmarks on copied public organic corpus IDs. The post identity is the original source ID.

## Refresh

Save and remove update account bookmark state only. They do not refresh or recopy the organic corpus.
