How much of this store has been altered
POST/api/v1/won/revisions
In the SDKs: revisions
How many memories in this store have been changed since they were written. Intended to be asked freely — by your app and by a model reading its own store — so it carries NO charge: no tokens, no per-request fee. Rate limited to 10 requests per minute, counted per endpoint per account, separately from your paid limit. Counts transforms (supersede); does not count deletions — a deleted memory leaves nothing to count — and counts only the memories you stored, not anything the engine keeps for itself. By default the answer is COUNTS ONLY, and its size does not depend on how much memory you have: a store of a hundred and a store of a hundred million get the same few numbers back. Send include to also receive one page of the memories behind a number — at most 20 per call, and never both lists at once. Page with before / skip_ids from the previous response, as /api/v1/memory/images does. Also served at /api/v1/memory/revisions, which is where clients published before 2026-08-18 call it; the two share one rate-limit budget.
Authentication
Every call carries your API key in an X-API-Key header. Keys are created in the console.
X-WOS-ModeloptionalPicks the memory model that answers. Omit it and the account default is used.
Request body
JSON, required. Out-of-range values are refused with a 400 rather than quietly clamped.
user_idstring requiredThe store to operate on. Stores are explicit: create one first or use the built-in "default".
include"revised" | "unrevised"Omit for counts only. Set it to also receive ONE page of the memories behind that number. Only one of the two per call — there is no way to ask for both lists in a single response. An unrecognised value is rejected rather than silently ignored, because a typo that quietly drops the list looks exactly like an empty store.
limitinteger 5–20 · default 20Memories per page, when
includeis set. 20 is both the default and the ceiling; a larger value is rejected, not clamped.beforestringCursor:
next_beforefrom the previous page. RFC3339 — an epoch number is rejected, because silently ignoring it would hand back page 1 forever.skip_idsstring[]Cursor:
next_skip_idsfrom the previous page. Hand back what you were given — these are the ids already seen at the boundary timestamp, and dropping them makes the pager repeat itself.
Returns
The 200 body. Fields nested one level are shown as parent.child.
revisedintegerMemories a transform has touched.
unrevisedintegerMemories nothing has touched since they were written.
totalintegerMemories in the store. Always
revised + unrevised.countsstringexcludesstringincludestringEchoed back only when a page was requested.
matchedintegerTOTAL memories behind this page (equal to
revisedorunrevised), not the size of the page. Only present withinclude.memoriesobject[]One page, at most 20. Only present with
include.has_morebooleannext_beforestringnext_skip_idsstring[]ordered_bystringWhich order the page is in — by when each memory was STORED, not when it was edited. Stated because assuming the latter would read the page wrong.
Example
curl -X POST https://api.wontopos.com/api/v1/won/revisions \
-H "X-API-Key: $WOS_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'Status codes
| Status | Meaning |
|---|---|
| 200 | Success. |
| 401 | Missing or invalid API key. |
| 404 | Store (user_id) does not exist. Create it first: POST /api/v1/memory/collection. |
| 429 | Rate limited (per-account, per-tier RPM). Retry after the indicated delay. |
Rate limits per tier and the full status list are in Errors & limits.
In the SDKs
The Python, TypeScript, and Rust SDKs wrap this endpoint so you do not build the request by
hand — pip install wontopos, npm i wontopos, or cargo add wontopos, then the method list is on the SDK reference. A coding agent can take the whole API in one file
at llms.txt, or over MCP with npx -y wontopos-mcp.