curl --request POST \
--url https://api.helicone.ai/v1/public/dataisbeautiful/model/percentage/overtime \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"provider": "OPENAI",
"models": [
"gpt-3.5"
],
"timespan": "7d"
}'
{
"data": [
{
"date": "<string>",
"percent": 123,
"matched_model": "<string>"
}
]
}
Retrieve model usage trends over specified time periods
curl --request POST \
--url https://api.helicone.ai/v1/public/dataisbeautiful/model/percentage/overtime \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"provider": "OPENAI",
"models": [
"gpt-3.5"
],
"timespan": "7d"
}'
{
"data": [
{
"date": "<string>",
"percent": 123,
"matched_model": "<string>"
}
]
}
Ok
The response is of type object
.
Was this page helpful?