thesignup docs
APIMe

Identify the calling credential

Returns the organization owning this API key, the underlying user, and the granted scopes. Cheap probe — useful for verifying a key is valid before issuing real work.

GET
/me

Returns the organization owning this API key, the underlying user, and the granted scopes. Cheap probe — useful for verifying a key is valid before issuing real work.

AuthorizationBearer <token>

Long-lived org-scoped API key. Generate one from your account dashboard. Pass as Authorization: Bearer sgn_live_….

In: header

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/me"
{
  "organization": {
    "id": "org_123",
    "name": "Maya Okafor",
    "slug": "maya"
  },
  "user": {
    "id": "user_123",
    "name": "Maya Okafor",
    "email": "maya@example.com"
  },
  "scopes": [
    "signups:read",
    "signups:write"
  ]
}
{
  "type": "https://thesignup.app/problems/not-found",
  "title": "Not found",
  "status": 404,
  "detail": "string",
  "code": "missing_credentials",
  "errors": [
    {
      "path": "string",
      "message": "string"
    }
  ],
  "cause": {
    "property1": null,
    "property2": null
  }
}
{
  "type": "https://thesignup.app/problems/not-found",
  "title": "Not found",
  "status": 404,
  "detail": "string",
  "code": "missing_credentials",
  "errors": [
    {
      "path": "string",
      "message": "string"
    }
  ],
  "cause": {
    "property1": null,
    "property2": null
  }
}
{
  "type": "https://thesignup.app/problems/not-found",
  "title": "Not found",
  "status": 404,
  "detail": "string",
  "code": "missing_credentials",
  "errors": [
    {
      "path": "string",
      "message": "string"
    }
  ],
  "cause": {
    "property1": null,
    "property2": null
  }
}