GET /v1/me
Verify your API key and identify the owning user, organization, plan, and scopes. Zero-cost, idempotent — ideal as a health check.
Request
No parameters — the key in the header is the only input. This is the recommended call to confirm a key works.
curl https://api.prowlo.com/v1/me \
--header "Authorization: Bearer prowlo_your_key"Try itGET /v1/me
No parameters — just send the request.
curl "https://api.prowlo.com/v1/me" \ --header "Authorization: Bearer $PROWLO_API_KEY"
Run uses your browser session against /api/v1/me with your key — identical parameters, just a same-origin host instead of api.prowlo.com.
Log in to run this liveResponsesample response
{
"success": true,
"data": {
"userId": "usr_01HXYZABC123456789",
"organizationId": "org_01HXYZDEF987654321",
"role": "owner",
"planType": "pro",
"scopes": [
"*"
]
}
}Response
Returns the identity bound to the key: the owning user and organization, the role, the organization’s plan, and the key’s scopes.
{
"success": true,
"data": {
"userId": "usr_01HXYZABC123456789",
"organizationId": "org_01HXYZDEF987654321",
"role": "owner",
"planType": "pro",
"scopes": [
"*"
]
}
}