Skip to content

GET /v1/me

Returns the organization the API key belongs to, along with its plan. Useful for validating a key and inspecting plan limits.

GET /api/v1/me
Authorization: Bearer twa_your_key_here

No parameters.

{
"org_id": "018e5678-abcd-7000-8000-000000000001",
"org_name": "ACME Corp",
"plan": {
"name": "PRO",
"slug": "pro",
"max_api_calls_per_hour": -1
}
}
FieldTypeDescription
org_idstring (UUID)Identifier of the organization the key belongs to
org_namestringOrganization name
planobject | nullActive plan information for the organization
plan.namestringPlan name (BASIC, PLUS, PRO)
plan.slugstringPlan slug (basic, plus, pro)
plan.max_api_calls_per_hourintegerHourly call limit (-1 = unlimited, 0 = no access)
Fenêtre de terminal
curl -s \
-H "Authorization: Bearer twa_your_key_here" \
https://app.techwatchalert.com/api/v1/me | jq .