Skip to main content
POST
/
api
/
rmsp
/
companies
/
search
/rmsp/companies/search
curl --request POST \
  --url https://api.anysite.io/api/rmsp/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "",
  "district": "<string>",
  "city": "<string>",
  "locality": "<string>",
  "okved": "56.10",
  "registered_at": "10.10.2022",
  "is_new": true,
  "is_social": true,
  "has_licenses": true,
  "is_hitech": true,
  "is_partnership": true,
  "sort_field": "NAME_EX",
  "sort": "ASC"
}
'
[
  {
    "inn": "<string>",
    "ogrn": "<string>",
    "name": "<string>",
    "@type": "@rmsp_company",
    "category_name": "<string>",
    "is_active": false,
    "is_new": false,
    "is_social": false,
    "is_support_recipient": false,
    "has_licenses": false,
    "has_contracts": false,
    "is_hitech": false,
    "is_partnership": false,
    "registered_at": "<string>",
    "excluded_at": "<string>",
    "region_code": "<string>",
    "region": "<string>",
    "area": "<string>",
    "city": "<string>",
    "locality": "<string>",
    "okved": "<string>",
    "okved_name": "<string>",
    "employee_count": 123,
    "phone": "<string>",
    "email": "<string>",
    "web_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
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
query
string
default:""

Name, owner full name or partial INN to search for

Examples:

"кафе"

"ромашка"

np_type
enum<string> | null

Restrict to legal entities (UL) or sole proprietors (IP)

Available options:
UL,
IP
region
enum<string> | null

Restrict to a Russian region (required when no query is given)

Available options:
01,
02,
03,
04,
05,
06,
07,
08,
09,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
83,
86,
87,
89,
90,
91,
92,
93,
94,
95,
99
district
string | null

13-digit KLADR district code (within the selected region)

city
string | null

13-digit KLADR city code (within the selected district)

locality
string | null

13-digit KLADR locality code (within the selected city)

okved
string | null

Main OKVED activity code (e.g. 56.10)

Example:

"56.10"

registered_at
string | null

Registration date in DD.MM.YYYY format

Example:

"10.10.2022"

is_new
boolean | null

Only newly created subjects

is_social
boolean | null

Only social enterprises

has_licenses
boolean | null

Only subjects holding licenses

is_hitech
boolean | null

Only producers of innovative / high-tech products

is_partnership
boolean | null

Only participants in partnership programs

sort_field
enum<string>
default:NAME_EX

Field to sort results by

Available options:
NAME_EX,
INN,
DTREGISTRY,
CATEGORY
sort
enum<string>
default:ASC

Sort direction

Available options:
ASC,
DESC

Response

Successful Response

inn
string
required
ogrn
string
required
name
string
required
np_type
enum<string>
required
Available options:
UL,
IP
@type
string
default:@rmsp_company
category
enum<string> | null
Available options:
1,
2,
3
category_name
string | null
is_active
boolean
default:false
is_new
boolean
default:false
is_social
boolean
default:false
is_support_recipient
boolean
default:false
has_licenses
boolean
default:false
has_contracts
boolean
default:false
is_hitech
boolean
default:false
is_partnership
boolean
default:false
registered_at
string | null
excluded_at
string | null
region_code
string | null
region
string | null
area
string | null
city
string | null
locality
string | null
okved
string | null
okved_name
string | null
employee_count
integer | null
phone
string | null
email
string | null
web_url
string | null