curl --request GET \
--url https://api.avidoai.com/v0/reporting/datasources \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": [
{
"id": "task",
"name": "Tasks"
},
{
"id": "test",
"name": "Test Executions"
},
{
"id": "eval",
"name": "Evaluations"
},
{
"id": "topic",
"name": "Topics"
},
{
"id": "tag",
"name": "Tags"
}
]
}Returns a list of all available reporting datasources with their IDs and human-readable names.
curl --request GET \
--url https://api.avidoai.com/v0/reporting/datasources \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": [
{
"id": "task",
"name": "Tasks"
},
{
"id": "test",
"name": "Test Executions"
},
{
"id": "eval",
"name": "Evaluations"
},
{
"id": "topic",
"name": "Topics"
},
{
"id": "tag",
"name": "Tags"
}
]
}Your unique Avido API key
Your unique Avido Application ID
Successfully retrieved datasources
Response containing list of available datasources
List of available reporting datasources
Show child attributes