Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.flowestate.app/llms.txt

Use this file to discover all available pages before exploring further.

GET /me

Confirms a bearer is valid and returns the organization it is bound to. No scope required — useful as the “Test connection” step in Make / Zapier connectors.

Request

curl https://panel.flowestate.app/api/v1/me \
  -H "Authorization: Bearer fe_k_your_key_here"

Response 200

{
  "organization": {
    "id": "org_...",
    "name": "Acme Realty",
    "slug": "acme-realty"
  },
  "auth": {
    "type": "api_key",
    "scopes": ["leads:read", "leads:write"],
    "clientId": null,
    "userId": null
  }
}

Fields

FieldDescription
organization.idInternal organization identifier.
organization.nameDisplay name.
organization.slugURL-safe slug (may be null for older orgs).
auth.typeapi_key or oauth.
auth.scopesArray of scopes attached to this bearer.
auth.clientIdOAuth client ID. Present only for auth.type: "oauth".
auth.userIdThe authenticating user. Present only for auth.type: "oauth".

Errors

The standard auth errors apply (401, 403). See Authentication.