Skip to main content
POST
/
api
/
listorg
/
persons
/listorg/persons
curl --request POST \
  --url https://api.anysite.io/api/listorg/persons \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "person": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@listorg_person",
    "name": "<string>",
    "inn": "<string>",
    "entrepreneurships": [],
    "director_of": [],
    "founder_of": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
person
string
required

Person INN (12 digits), internal List-Org id, or a full person URL

Minimum string length: 1
Examples:

"500110474504"

"56580"

"https://www.list-org.com/man/56580"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@listorg_person
name
string | null
inn
string | null
entrepreneurships
ListorgEntrepreneurship · object[]
director_of
ListorgAffiliation · object[]
founder_of
ListorgAffiliation · object[]