GET /users/me
https://api.voygr.tech/users/me
Overview
Identity + quota for the presented API key. Lighter-weight companion to GET /v1/usage with key metadata included.
Authentication
- API key in header
X-API-Key: Your customer API key (pk_live_...), sent on every request. Self-serve at https://api.voygr.tech/checkout.
Responses
200
Successful Response
application/json
Schema: object
Fields
| Field | Type | Required | Description and constraints |
|---|---|---|---|
api_key_id | string | required | |
customer_id | string | required | |
customer_name | string | optional | |
api_key_last_4 | string | optional | |
status | string | optional | |
quota_limit | integer | required | |
current_usage | integer | required | |
quota_period | string | optional | |
ask_user_webhook_url | string | null | optional | |
ask_user_webhook_configured | boolean | optional |
401
Missing or invalid X-API-Key.
application/json
X-API-Key header absent
{
"detail": {
"error": "API key required"
}
}X-API-Key doesn't resolve to an active key
{
"detail": {
"error": "invalid API key"
}
}On this page
