Speechbase

Get current organization

Returns the organization the authenticated API key belongs to.

GET
/v1/me

Returns the organization the authenticated API key belongs to.

Authorization

bearerAuth
AuthorizationBearer <token>

API key

In: header

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/v1/me" \  -H "Authorization: Bearer $SPEECHBASE_API_KEY"
{
  "organization": {
    "id": "string",
    "name": "string",
    "plan": "string"
  }
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "code": "string",
  "validation": [
    {
      "path": [
        "string"
      ],
      "message": "string"
    }
  ],
  "provider": "string",
  "upstream_code": "string",
  "upstream_status": 0,
  "turn_index": 0
}