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
}Documentation Index
Fetch the complete documentation index at: https://docs.zavu.dev/llms.txt
Use this file to discover all available pages before exploring further.
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
}