GraphQL · POST /api/v2
Archive API documentation
Your workspace data — items, creators, collections, views, and campaigns — as one GraphQL
endpoint. AI agents use the same surface through the MCP server at
/api/v2/mcp.
curl https://app.archive.com/api/v2 \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer docs_demo_token_0000000000000000000000' \
-H 'WORKSPACE-ID: 6ccefa76-e8ba-5ab0-9c60-e48a9e235a4a' \
-d '{
"query": "query WorkspacesDefault($first: Int, $after: String) {\n workspaces(first: $first, after: $after) {\n totalCount\n edges {\n node {\n id\n name\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n}",
"variables": {
"first": 10
}
}' Guides
Task-oriented walkthroughs — getting started, authentication, workspaces, pagination,
filtering, rate limits, errors.
Start with Getting started → API reference
Generated from the live schema at build time — every query, mutation, and type with runnable
examples.
33 queries 31 mutations 96 types MCP server 63 tools, each wrapping one public root field and executing it verbatim — the reference
applies to tools too.
Connect a client → Explorer
Run queries against a live schema in the browser — every example in the reference deep-links
here.
Open the explorer →