Skip to content
OpenRelay is in early access, and the /v1 API is stable. New capabilities ship in the changelog.
Account

Current user profile and org memberships

Returns the signed-in user's profile and organization memberships. Requires a dashboard session token; API keys cannot call this endpoint.

GET
/v1/me
AuthorizationBearer <token>

OpenRelay API key. Send it as Authorization: Bearer or_… (legacy vl_… keys still work).

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/me"
{  "user": {    "id": "string",    "email": "string",    "fullName": "string",    "avatarUrl": "string",    "defaultOrganizationId": "string"  },  "organizations": [    {      "organizationId": "string",      "name": "string",      "role": "string",      "features": {        "batch": true,        "perVmSshKeys": true,        "fabric": true,        "publicEndpoint": true,        "flags": {          "property1": true,          "property2": true        }      }    }  ]}