Skip to content

Account

GET Auth required

Returns the total requests made by your account since last month to rate-limited endpoints. All dates are reported using UTC/GMT -5 (US Eastern Standard Time).

Terminal window
curl https://carapi.app/api/account/requests \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE"
[
{
"date": "2026-06-01",
"count": 1523
},
{
"date": "2026-06-02",
"count": 2104
},
{
"date": "2026-06-03",
"count": 1876
}
]

GET Auth required

Returns the total requests made by your account today to rate-limited endpoints. All dates are reported using UTC/GMT -5 (US Eastern Standard Time).

Terminal window
curl https://carapi.app/api/account/requests-today \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE"
{
"count": 42
}