Skip to main content
POST
/
api
/
rusprofile
/
companies
/
search
/rusprofile/companies/search
curl --request POST \
  --url https://api.anysite.io/api/rusprofile/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@rusprofile_company_search_result",
    "type": "<string>",
    "name": "<string>",
    "inn": "<string>",
    "ogrn": "<string>",
    "region": "<string>",
    "address": "<string>",
    "ceo_name": "<string>",
    "ceo_type": "<string>",
    "is_inactive": true,
    "main_activity_code": "<string>",
    "main_activity_name": "<string>",
    "charter_capital": 123,
    "revenue": 123,
    "registered_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search string — company/entrepreneur name, INN, OGRN or full name of a person

Minimum string length: 1
Examples:

"Сбербанк"

"7707083893"

"1027700132195"

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

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@rusprofile_company_search_result
type
string | null
name
string | null
inn
string | null
ogrn
string | null
region
string | null
address
string | null
ceo_name
string | null
ceo_type
string | null
is_inactive
boolean | null
main_activity_code
string | null
main_activity_name
string | null
charter_capital
integer | null
revenue
integer | null
registered_at
string | null