Skip to main content
GET
/
agency
Get Agency Settings
curl --request GET \
  --url https://api.getoutbox.ai/agency \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "logo": "<string>",
  "address": {
    "address": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>",
    "zip_code": "<string>"
  },
  "api_key": "<string>",
  "admins": [
    {
      "id": "<string>",
      "full_name": "<string>",
      "email": "<string>"
    }
  ],
  "invites": [
    {
      "id": "<string>",
      "email": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getoutbox.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Agency API Key

Response

Agency settings retrieved successfully

id
string
name
string
email
string
logo
string | null

Logo URL, null if not set

address
object
api_key
string
admins
object[]
invites
object[]