Tasuku
ReferenceAPI referenceConfiguration

Read month-to-date API usage for conversation intelligence

Tracks the separate API-key usage for direct routing and passive-listening decisions. Known cost combines provider-reported charges and estimates for supported standard OpenAI models; calls that cannot be priced remain visible in the unpriced count.

GET/organizations/{organization_id}/conversation-intelligence/usage

Tracks the separate API-key usage for direct routing and passive-listening decisions. Known cost combines provider-reported charges and estimates for supported standard OpenAI models; calls that cannot be priced remain visible in the unpriced count.

Authorization

tasuku_session<token>

In: cookie

Path Parameters

organization_id*string
Length1 <= length <= 128

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/organizations/string/conversation-intelligence/usage"
{  "data": {    "window_started_at": "2019-08-24T14:15:22Z",    "window_ended_at": "2019-08-24T14:15:22Z",    "request_count": 0,    "direct_request_count": 0,    "passive_request_count": 0,    "prompt_tokens": 0,    "cached_tokens": 0,    "output_tokens": 0,    "total_tokens": 0,    "known_cost_usd": 0,    "provider_reported_count": 0,    "estimated_cost_count": 0,    "unknown_cost_request_count": 0  }}