Skip to content
RedirHub/API
Sign inGet API key
Account & Reference · account.index
GET/accountaccount.index

Get the current account

Returns the account the token belongs to, including its settings.

Base URL
https://api.redirhub.com/v1
Auth
Bearer token
Idempotent
Yes
Returns
application/json

The request

Call GET /account with your bearer token.

# Get the current account
curl "https://api.redirhub.com/v1/account" \
  -H "Authorization: Bearer $REDIRHUB_TOKEN"

The response

A 200 returns the record as JSON.

{
  "id": "9f2a7c31-4b8e-4a02-9d1f-0c6b7e5a1d44",
  "email": "teammate@acme.com",
  "email_verified": true,
  "name": "Acme",
  "headurl": "string",
  "current_workspace": "string",
  "login_workspace": "string",
  "phone": "string",
  "phone_verified": true,
  "im": "string",
  "last_login_ip": "string",
  "two_factor_enabled": true,
  "password_last_changed": "string",
  "language": "string",
  "timezone": "string",
  "country": "string",
  "connected": [
    {
      "provider": "string",
      "openid": "string",
      "manage": null
    }
  ],
  "meta": [
    "string"
  ],
  "created_at": "2026-08-01T09:14:22Z"
}

Status codes

200
SuccessThe authenticated account.
401
UnauthenticatedUnauthenticated
429
Too many requestsToo many requests

What usually comes next

One call is rarely the whole job. These are the endpoints most integrations reach for around this one.