Skip to main content
GET
/
api
/
v1
/
me
Current identity
curl --request GET \
  --url https://api.alpha-labs.trade/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "userId": "<string>",
    "apiKey": {
      "id": "<string>",
      "label": "<string>",
      "prefix": "<string>",
      "lastUsedAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    },
    "rateLimit": {
      "limit": 1200,
      "windowSeconds": 60
    }
  }
}

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer murmo_.... Keys are created in the Murmo app. Header-only — keys are never read from the query string. Valid for the REST API under /api/v1 only (not the GraphQL endpoint).

Response

Identity and capabilities.

data
object