# `catalog.stockMovements.list` Stock ledger rows for a product or variant. - **method + path**: `GET /v1/catalog/stock-movements` - **TR label**: Stok hareketleri - **auth**: authenticated · scope gates: none beyond authentication - **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.list.json](/schemas/routes/catalog.stockMovements.list.json). ## Body No request body. ## Query ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "target": { "type": "string", "pattern": "^(prd|var)_[a-zA-Z0-9]{1,32}$" }, "limit": { "type": "integer", "minimum": 1, "maximum": 100 } }, "required": [ "target" ] } ```