Skip to main content
POST
/
org-chart
/
full
Org Chart (Entire Organization)
curl --request POST \
  --url https://api.sixtyfour.ai/org-chart/full \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_name": "<string>",
  "linkedin_public_id": "<string>",
  "linkedin_company_url": "<string>",
  "company_member_id": 123,
  "max_iterations": 8,
  "max_results": 25000,
  "page": 1,
  "page_size": 50,
  "cursor": "<string>",
  "include_resolution_debug": false
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

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

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

Headers

x-api-key
string | null

Body

application/json
company_name
string | null

Target company name. Used to disambiguate when a LinkedIn handle is ambiguous.

linkedin_public_id
string | null

LinkedIn public ID for the company (e.g. 'sixtyfour-ai').

linkedin_company_url
string | null

Full LinkedIn company URL.

company_member_id
integer | null

Internal numeric LinkedIn company member ID.

max_iterations
integer
default:8

Maximum research iterations the agent may run.

Required range: 1 <= x <= 20
max_results
integer | null

Maximum number of people returned across all pages.

Required range: 1 <= x <= 50000
page
integer
default:1

1-based page number.

Required range: x >= 1
page_size
integer
default:50

Number of results per page.

Required range: 1 <= x <= 500
cursor
string | null

Opaque pagination cursor returned by a previous response.

include_resolution_debug
boolean
default:false

Include company-resolution debug metadata in the response.

Response

Successful Response