🏋️
getMyWorkouts
Track API usage and quota consumption for your account.
Base URL & auth
All endpoints are relative to this base. Authenticate with the
x-api-key header (needs an active subscription).
https://dashoviaapi-d7619530.fastapicloud.dev/api/dashovia/getmyworkouts
Get an API key →
Cost: 1 unit(s) / call
Endpoints
GET
/api/dashovia/getmyworkouts/api/v1/usageGet your usage snapshot.
curl 'https://your-domain.com/api/dashovia/getmyworkouts/api/v1/usage' \
-H 'x-api-key: dsv_xxx'
Sample response
{"standard": 12, "ai": 3}
POST
/api/dashovia/getmyworkouts/api/v1/consume-standardRecord a standard usage unit.
curl -X POST 'https://your-domain.com/api/dashovia/getmyworkouts/api/v1/consume-standard' \
-H 'x-api-key: dsv_xxx'
Sample response
{"ok": true, "standard": 13}
POST
/api/dashovia/getmyworkouts/api/v1/consume-aiRecord an AI usage unit.
curl -X POST 'https://your-domain.com/api/dashovia/getmyworkouts/api/v1/consume-ai' \
-H 'x-api-key: dsv_xxx'
Sample response
{"ok": true, "ai": 4}