https://api.stynar.comAll API requests use this base URL. Append the path shown on each endpoint page, e.g.:
The version is the literal v1 path prefix — there's currently one version of this API. Future breaking changes would ship as a new prefix (e.g. v2) rather than in place, so existing integrations keep working.
Every request must include your API key as a Bearer token. Keys are 256-bit random secrets, prefixed esk_ — treat them exactly like a password.
Authorization: Bearer esk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxEach key is created with read (view-only endpoints), write (state-changing endpoints), or both — chosen at creation time. A key without the required scope gets 403 INSUFFICIENT_SCOPE. See API Keys for how to create and manage them.
/v1/accountReturns your plan-independent API entitlement, limits, and this month's usage.
curl "https://api.stynar.com/v1/account" \
-H "Authorization: Bearer esk_your_key_here"{
"apiEnabled": true,
"limits": {
"monthlyRequests": 50000,
"requestsPerMinute": 60,
"burstPerSecond": 10,
"maxApiKeys": 3
},
"usage": {
"monthlyRequests": 1284
}
}