Skip to main content
GET
/
me
Get current organization
curl --request GET \
  --url https://backend.leadey.ai/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "plan": "growth",
    "planStatus": "active",
    "credits": {
      "balance": 2840,
      "included": 10000,
      "used": 7160
    },
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key, created in the Leadey dashboard under Settings → API Keys. Send it as Authorization: Bearer leadey_sk_live_….

Response

The authenticated organization.

data
object