Skip to main content
POST
/
api
/
pbnalog
/
persons
/
search
/pbnalog/persons/search
curl --request POST \
  --url https://api.anysite.io/api/pbnalog/persons/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "role": "<string>",
    "@type": "@pbnalog_person",
    "inn": "<string>",
    "company_count": 123,
    "token": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Full name or INN of the manager or founder to search for

Examples:

"Иванов Иван"

"770303580308"

count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
role
enum<string> | null

Restrict to managers or founders (both when omitted)

Available options:
manager,
founder

Response

Successful Response

name
string
required
role
string
required
@type
string
default:@pbnalog_person
inn
string | null
company_count
integer | null
token
string | null