Available/realized/redeemed counts in platform catalog.
Why this method exists
Available/realized/redeemed counts in platform catalog.
When to use
Pre-campaign stock dashboard.
Endpoint
POST /v1/platform/catalog/summary
Authentication: X-Api-Key header (prefix bk_plt_). Do not send projectId or actor id in body — they come from the key.
Scope: platform:catalog:read
Request example
{
"meta": { "requestId": "optional-uuid" },
"data": { "supplierId": "optional-filter-uuid" }
}
Response example
{
"success": true,
"data": {
"platformId": "platform-uuid",
"byStatus": { "available": 85000, "realized": 12000, "redeemed": 9800 },
"totalInCatalog": 107700,
"asOf": "2026-07-13T12:00:00Z"
}
}
Errors
UNAUTHORIZED/ACCESS_DENIED— access deniedVALIDATION_ERROR— invalid bodyNOT_FOUND— resource not foundRATE_LIMIT_EXCEEDED(429) — rate limit
cURL
curl -X POST "https://api-external.promanta.ru/v1/platform/catalog/summary" \
-H "Content-Type: application/json" \
-H "X-Api-Key: YOUR_API_KEY" \
-d '{"data": { "supplierId": "optional-filter-uuid" }}'