Skip to main content
POST
/
org-chart
/
find-people
Org Chart (Find People)
curl --request POST \
  --url https://api.sixtyfour.ai/org-chart/find-people \
  --header 'Content-Type: application/json' \
  --data '
{
  "people_focus_prompt": "<string>",
  "company_name": "<string>",
  "linkedin_public_id": "<string>",
  "linkedin_company_url": "<string>",
  "company_member_id": 123,
  "max_iterations": 8,
  "max_results": 25000,
  "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
people_focus_prompt
string
required

Natural-language description of which people to find (e.g. 'engineering leaders').

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
include_resolution_debug
boolean
default:false

Include company-resolution debug metadata in the response.

Response

Successful Response