API reference
GET /v1/me
Identify the authenticated caller. Cheap probe for verifying a key works.
Returns the id of the authenticated caller. Useful as a "is my key alive" probe before doing real work.
GET /v1/me
Auth
API key (Authorization: Bearer olv_sk_...).
Response — 200 OK
{
"id": "00000000-0000-0000-0000-000000000000",
"email": null
}
| Field | Notes |
|---|---|
id | Your Olava account id. |
email | Always null on API-key auth. |
Status codes
| Status | Notes |
|---|---|
| 200 | Success. |
| 401 | Auth failure. See Authentication. |