Skip to main content
GET
/
vq
/
developer
/
usage
/
daily
Get daily usage breakdown
curl --request GET \
  --url https://api.vectrade.io/v1/vq/developer/usage/daily \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "day": "2023-12-25",
      "endpoint": "<string>",
      "method": "<string>",
      "callCount": 123,
      "errorCount": 123,
      "tokensUsed": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.vectrade.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

days
integer
default:30

Number of days to look back

Required range: x <= 90

Response

Daily usage records

data
object[]