curl --request GET \
--url https://api.avidoai.com/v1/quickstarts/{id}/policy-counts \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": {
"topicsCount": 4,
"applicationEvalCount": 1,
"topicEvalCounts": [
{
"topicId": "789e4567-e89b-12d3-a456-426614174000",
"evalCount": 2
}
]
}
}Returns the total topics count, application-wide eval count, and per-topic eval counts for a quickstart. Includes both DRAFT and ACTIVE evals. Only evals created by this quickstart are counted.
curl --request GET \
--url https://api.avidoai.com/v1/quickstarts/{id}/policy-counts \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": {
"topicsCount": 4,
"applicationEvalCount": 1,
"topicEvalCounts": [
{
"topicId": "789e4567-e89b-12d3-a456-426614174000",
"evalCount": 2
}
]
}
}Your unique Avido API key
Your unique Avido Application ID
The unique identifier of the quickstart
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"123e4567-e89b-12d3-a456-426614174000"
Successfully retrieved policy counts
Response containing policy eval counts for a quickstart: total topics, application-wide eval count, and per-topic eval counts. Includes both DRAFT and ACTIVE evals so counts are stable across POLICIES_REVIEW and COMPLETE statuses.
Show child attributes