Skip to main content
GET
/
agency
/
company
/
{company_id}
Get Agency Company Details
curl --request GET \
  --url https://api.getoutbox.ai/agency/company/{company_id} \
  --header 'Authorization: <api-key>'
{
  "name": "<string>",
  "logo": "<string>",
  "email": "<string>",
  "active": true,
  "settings": {
    "stripe_check": true,
    "ghl_check": true,
    "auto_rebill": "off",
    "chat_multiplier": 123,
    "call_rate": "<string>",
    "max_concurrent_lanes": 123,
    "concurrent_lanes": 123,
    "retainer_fee": 123,
    "agent_limit": 123
  },
  "billing": {
    "list": "<array>",
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Agency API Key

Path Parameters

company_id
string
required

The ID of the company

Query Parameters

tab
enum<string>
default:agents

Data type to retrieve

Available options:
agents,
modules,
phone,
transactions
date
string<date-time>

ISO-8601 datetime for single month (default: current month)

start_date
string<date-time>

ISO-8601 datetime for date range start

end_date
string<date-time>

ISO-8601 datetime for date range end

page
integer
default:1

Page number for pagination

Response

Company details retrieved successfully

name
string

Logo URL

email
string
active
boolean
settings
object
billing
object