Account
Get current API key context
Returns the project, team, and API key metadata bound to the current Bearer token. Used by CLIs and SDKs to confirm which project they will operate on.
GET
Get current API key context
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the project, team, and API key metadata bound to the current Bearer token. Used by CLIs and SDKs to confirm which project they will operate on.
curl --request GET \
--url https://api.zavu.dev/v1/me \
--header 'Authorization: Bearer <token>'{
"project": {
"id": "<string>",
"name": "<string>",
"isSubAccount": true
},
"team": {
"id": "<string>",
"name": "<string>"
},
"apiKey": {
"id": "<string>"
},
"isTestMode": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.zavu.dev/v1/me \
--header 'Authorization: Bearer <token>'{
"project": {
"id": "<string>",
"name": "<string>",
"isSubAccount": true
},
"team": {
"id": "<string>",
"name": "<string>"
},
"apiKey": {
"id": "<string>"
},
"isTestMode": true
}