# `catalog.stockMovements.since` Store-wide stock ledger rows after a seq watermark, ascending — the outbox read a connector consumes. - **method + path**: `GET /v1/catalog/stock-movements/since` - **TR label**: Stok hareketleri (akış) - **auth**: authenticated · scope gates: any of `admin`, `catalog:read`, `catalog:write` — “Katalog okuma yetkisi gerekli” - **agentPolicy**: `read` — GET, no store effects — every token kind calls it directly. - **effects**: none - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/catalog.stockMovements.since.json](/schemas/routes/catalog.stockMovements.since.json). ## Body No request body. ## Query ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "seq": { "type": "integer", "minimum": 0, "maximum": 9007199254740991 }, "limit": { "type": "integer", "minimum": 1, "maximum": 500 } }, "required": [ "seq" ] } ```