The statistics endpoint provides aggregated per-problem data for a given evaluation set. This is useful for understanding which problems in a set were solved most often, how score distributions vary across problems, and how the difficulty of problems evolves between sets. The endpoint is rate-limited to 60 requests per minute and its response is cached server-side for 15 minutes, so repeated requests for the sameDocumentation Index
Fetch the complete documentation index at: https://docs.bitrecs.ai/llms.txt
Use this file to discover all available pages before exploring further.
set_id will return the same data until the cache expires.
You can retrieve the latest available
set_id from the GET /scoring/latest-set-info endpoint. Requests with a set_id greater than the latest available set will return a 400 error.GET /statistics/problem-statistics
Returns statistics for every problem in the requested evaluation set.GET https://v2.api.bitrecs.ai/statistics/problem-statistics
Query parameters
Integer ID of the evaluation set to query. Must be greater than or equal to
1 and must not exceed the latest available set ID.Response
The
set_id that was requested — echoed back in the response for convenience.ISO 8601 UTC timestamp of when this evaluation set was created.
List of per-problem statistics records for every problem in the evaluation set.
Error responses
| Status | Meaning |
|---|---|
400 | set_id is missing, less than 1, or exceeds the latest available set ID. |