# `channel.finance.list` Imported settlement rows (commission, cargo, fees, payouts) and per-order expected vs settled. - **method + path**: `GET /v1/channel/{ext}/finance` - **TR label**: Pazaryeri hakediş - **auth**: authenticated · scope gates: any of `admin`, `orders:read`, `orders:write` — “Siparişleri yalnızca mağaza sahibi görebilir” - **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/channel.finance.list.json](/schemas/routes/channel.finance.list.json). ## Body No request body. ## Query ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "limit": { "type": "integer", "minimum": 1, "maximum": 100 }, "cursor": { "type": "string", "maxLength": 200 }, "from": { "type": "string", "maxLength": 40 }, "to": { "type": "string", "maxLength": 40 }, "kind": { "type": "string", "maxLength": 24 }, "orderId": { "type": "string", "pattern": "^ord_[0-9A-HJKMNP-TV-Z]{26}$" } } } ```