curl --request POST \
--url https://analytics-api.voiceflow.com/v2/query/usage \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"data": {
"name": "interactions",
"filter": {
"projectID": "<string>",
"startTime": "<string>",
"endTime": "<string>",
"limit": 100,
"cursor": 123
}
}
}
'