Skip to content

Who am I / quota snapshot

GET /users/me

https://api.voygr.tech/users/me

Open in playground

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

FieldTypeRequiredDescription and constraints
api_key_idstringrequired
customer_idstringrequired
customer_namestringoptional
api_key_last_4stringoptional
statusstringoptional
quota_limitintegerrequired
current_usageintegerrequired
quota_periodstringoptional
ask_user_webhook_urlstring | nulloptional
ask_user_webhook_configuredbooleanoptional

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"
  }
}