List request-log groups (POST filter)
List request-log groups (POST filter)
Same as GET; the POST body carries a filters payload (POST-for-filtering — POST delegates to GET).
Authentication
AuthorizationBearer
JWT access token or Respan API key
Query parameters
page
A page number within the paginated result set.
page_size
Number of results to return per page.
Request
This endpoint expects an object.
date_group
number_of_requests
total_cost
total_prompt_tokens
total_completion_tokens
total_tokens
max_tpm
error_count
error_percentage
average_prompt_tokens
average_completion_tokens
average_tokens
average_cost
average_latency
average_tps
average_ttft
prompt_cache_hit_tokens
reasoning_tokens
max_cost
max_tokens
max_latency
unique_customers
latency_p_50
latency_p_95
latency_p_99
cache_hit_percentage
requests_per_second
model
Response
count
results
next
previous
total_count
current_filters
Pydantic model for FilterParamDict. A dictionary that maps metric names to their filter parameters.
Each key is a metric name (str), and each value can be:
- A single MetricFilterParamPydantic (one condition)
- A List[MetricFilterParamPydantic] (multiple conditions for same metric)
- A FilterBundlePydantic (nested filter bundle with connector)
Note: Uses extra=“allow” for dynamic metric name fields. The pydantic_extra annotation tells Pydantic what types to expect for extra fields, and generates typed additionalProperties in JSON Schema.
filters_data