/listorg/companies/search
curl --request POST \
--url https://api.anysite.io/api/listorg/companies/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"query": "<string>",
"count": 2,
"timeout": 300,
"type": "all",
"sort": "relevance",
"active_only": false,
"has_sole_proprietor": false,
"active_sole_proprietor": false,
"prefix_match": false,
"include_historical": false,
"with_phone": false,
"with_website": false,
"with_email": false,
"with_branches": false,
"okved": "<string>",
"okato": "<string>",
"okfs": "<string>",
"okogu": "<string>",
"employees_min": 1,
"employees_max": 1,
"revenue_min": 1,
"revenue_max": 1,
"profit_min": 123,
"profit_max": 123,
"assets_min": 1,
"assets_max": 1,
"registered_after": "<string>",
"registered_before": "<string>"
}
'import requests
url = "https://api.anysite.io/api/listorg/companies/search"
payload = {
"query": "<string>",
"count": 2,
"timeout": 300,
"type": "all",
"sort": "relevance",
"active_only": False,
"has_sole_proprietor": False,
"active_sole_proprietor": False,
"prefix_match": False,
"include_historical": False,
"with_phone": False,
"with_website": False,
"with_email": False,
"with_branches": False,
"okved": "<string>",
"okato": "<string>",
"okfs": "<string>",
"okogu": "<string>",
"employees_min": 1,
"employees_max": 1,
"revenue_min": 1,
"revenue_max": 1,
"profit_min": 123,
"profit_max": 123,
"assets_min": 1,
"assets_max": 1,
"registered_after": "<string>",
"registered_before": "<string>"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
count: 2,
timeout: 300,
type: 'all',
sort: 'relevance',
active_only: false,
has_sole_proprietor: false,
active_sole_proprietor: false,
prefix_match: false,
include_historical: false,
with_phone: false,
with_website: false,
with_email: false,
with_branches: false,
okved: '<string>',
okato: '<string>',
okfs: '<string>',
okogu: '<string>',
employees_min: 1,
employees_max: 1,
revenue_min: 1,
revenue_max: 1,
profit_min: 123,
profit_max: 123,
assets_min: 1,
assets_max: 1,
registered_after: '<string>',
registered_before: '<string>'
})
};
fetch('https://api.anysite.io/api/listorg/companies/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/listorg/companies/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'count' => 2,
'timeout' => 300,
'type' => 'all',
'sort' => 'relevance',
'active_only' => false,
'has_sole_proprietor' => false,
'active_sole_proprietor' => false,
'prefix_match' => false,
'include_historical' => false,
'with_phone' => false,
'with_website' => false,
'with_email' => false,
'with_branches' => false,
'okved' => '<string>',
'okato' => '<string>',
'okfs' => '<string>',
'okogu' => '<string>',
'employees_min' => 1,
'employees_max' => 1,
'revenue_min' => 1,
'revenue_max' => 1,
'profit_min' => 123,
'profit_max' => 123,
'assets_min' => 1,
'assets_max' => 1,
'registered_after' => '<string>',
'registered_before' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/listorg/companies/search"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"type\": \"all\",\n \"sort\": \"relevance\",\n \"active_only\": false,\n \"has_sole_proprietor\": false,\n \"active_sole_proprietor\": false,\n \"prefix_match\": false,\n \"include_historical\": false,\n \"with_phone\": false,\n \"with_website\": false,\n \"with_email\": false,\n \"with_branches\": false,\n \"okved\": \"<string>\",\n \"okato\": \"<string>\",\n \"okfs\": \"<string>\",\n \"okogu\": \"<string>\",\n \"employees_min\": 1,\n \"employees_max\": 1,\n \"revenue_min\": 1,\n \"revenue_max\": 1,\n \"profit_min\": 123,\n \"profit_max\": 123,\n \"assets_min\": 1,\n \"assets_max\": 1,\n \"registered_after\": \"<string>\",\n \"registered_before\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/listorg/companies/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"type\": \"all\",\n \"sort\": \"relevance\",\n \"active_only\": false,\n \"has_sole_proprietor\": false,\n \"active_sole_proprietor\": false,\n \"prefix_match\": false,\n \"include_historical\": false,\n \"with_phone\": false,\n \"with_website\": false,\n \"with_email\": false,\n \"with_branches\": false,\n \"okved\": \"<string>\",\n \"okato\": \"<string>\",\n \"okfs\": \"<string>\",\n \"okogu\": \"<string>\",\n \"employees_min\": 1,\n \"employees_max\": 1,\n \"revenue_min\": 1,\n \"revenue_max\": 1,\n \"profit_min\": 123,\n \"profit_max\": 123,\n \"assets_min\": 1,\n \"assets_max\": 1,\n \"registered_after\": \"<string>\",\n \"registered_before\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/listorg/companies/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"type\": \"all\",\n \"sort\": \"relevance\",\n \"active_only\": false,\n \"has_sole_proprietor\": false,\n \"active_sole_proprietor\": false,\n \"prefix_match\": false,\n \"include_historical\": false,\n \"with_phone\": false,\n \"with_website\": false,\n \"with_email\": false,\n \"with_branches\": false,\n \"okved\": \"<string>\",\n \"okato\": \"<string>\",\n \"okfs\": \"<string>\",\n \"okogu\": \"<string>\",\n \"employees_min\": 1,\n \"employees_max\": 1,\n \"revenue_min\": 1,\n \"revenue_max\": 1,\n \"profit_min\": 123,\n \"profit_max\": 123,\n \"assets_min\": 1,\n \"assets_max\": 1,\n \"registered_after\": \"<string>\",\n \"registered_before\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"url": "<string>",
"@type": "ListorgCompanySearchResult",
"name": "<string>",
"full_name": "<string>",
"status": "<string>",
"is_active": true,
"inn": "<string>",
"kpp": "<string>",
"director": "<string>",
"address": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/listorg
/listorg/companies/search
Search Russian companies (FNS/EGRUL registry) by name, INN, OGRN, OKPO, director/founder, phone, address or bank BIC, with filters by active status, presence/activity of a sole proprietor (ИП), prefix matching, historical data, presence of contacts/branches, activity (OKVED), region (OKATO), ownership form (OKFS), government authority (OKOGU), and ranges on headcount, revenue, profit, assets and registration date, plus configurable sort order.
Price: 1 credit per 50 results
POST
/
api
/
listorg
/
companies
/
search
/listorg/companies/search
curl --request POST \
--url https://api.anysite.io/api/listorg/companies/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"query": "<string>",
"count": 2,
"timeout": 300,
"type": "all",
"sort": "relevance",
"active_only": false,
"has_sole_proprietor": false,
"active_sole_proprietor": false,
"prefix_match": false,
"include_historical": false,
"with_phone": false,
"with_website": false,
"with_email": false,
"with_branches": false,
"okved": "<string>",
"okato": "<string>",
"okfs": "<string>",
"okogu": "<string>",
"employees_min": 1,
"employees_max": 1,
"revenue_min": 1,
"revenue_max": 1,
"profit_min": 123,
"profit_max": 123,
"assets_min": 1,
"assets_max": 1,
"registered_after": "<string>",
"registered_before": "<string>"
}
'import requests
url = "https://api.anysite.io/api/listorg/companies/search"
payload = {
"query": "<string>",
"count": 2,
"timeout": 300,
"type": "all",
"sort": "relevance",
"active_only": False,
"has_sole_proprietor": False,
"active_sole_proprietor": False,
"prefix_match": False,
"include_historical": False,
"with_phone": False,
"with_website": False,
"with_email": False,
"with_branches": False,
"okved": "<string>",
"okato": "<string>",
"okfs": "<string>",
"okogu": "<string>",
"employees_min": 1,
"employees_max": 1,
"revenue_min": 1,
"revenue_max": 1,
"profit_min": 123,
"profit_max": 123,
"assets_min": 1,
"assets_max": 1,
"registered_after": "<string>",
"registered_before": "<string>"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
count: 2,
timeout: 300,
type: 'all',
sort: 'relevance',
active_only: false,
has_sole_proprietor: false,
active_sole_proprietor: false,
prefix_match: false,
include_historical: false,
with_phone: false,
with_website: false,
with_email: false,
with_branches: false,
okved: '<string>',
okato: '<string>',
okfs: '<string>',
okogu: '<string>',
employees_min: 1,
employees_max: 1,
revenue_min: 1,
revenue_max: 1,
profit_min: 123,
profit_max: 123,
assets_min: 1,
assets_max: 1,
registered_after: '<string>',
registered_before: '<string>'
})
};
fetch('https://api.anysite.io/api/listorg/companies/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/listorg/companies/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'count' => 2,
'timeout' => 300,
'type' => 'all',
'sort' => 'relevance',
'active_only' => false,
'has_sole_proprietor' => false,
'active_sole_proprietor' => false,
'prefix_match' => false,
'include_historical' => false,
'with_phone' => false,
'with_website' => false,
'with_email' => false,
'with_branches' => false,
'okved' => '<string>',
'okato' => '<string>',
'okfs' => '<string>',
'okogu' => '<string>',
'employees_min' => 1,
'employees_max' => 1,
'revenue_min' => 1,
'revenue_max' => 1,
'profit_min' => 123,
'profit_max' => 123,
'assets_min' => 1,
'assets_max' => 1,
'registered_after' => '<string>',
'registered_before' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/listorg/companies/search"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"type\": \"all\",\n \"sort\": \"relevance\",\n \"active_only\": false,\n \"has_sole_proprietor\": false,\n \"active_sole_proprietor\": false,\n \"prefix_match\": false,\n \"include_historical\": false,\n \"with_phone\": false,\n \"with_website\": false,\n \"with_email\": false,\n \"with_branches\": false,\n \"okved\": \"<string>\",\n \"okato\": \"<string>\",\n \"okfs\": \"<string>\",\n \"okogu\": \"<string>\",\n \"employees_min\": 1,\n \"employees_max\": 1,\n \"revenue_min\": 1,\n \"revenue_max\": 1,\n \"profit_min\": 123,\n \"profit_max\": 123,\n \"assets_min\": 1,\n \"assets_max\": 1,\n \"registered_after\": \"<string>\",\n \"registered_before\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/listorg/companies/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"type\": \"all\",\n \"sort\": \"relevance\",\n \"active_only\": false,\n \"has_sole_proprietor\": false,\n \"active_sole_proprietor\": false,\n \"prefix_match\": false,\n \"include_historical\": false,\n \"with_phone\": false,\n \"with_website\": false,\n \"with_email\": false,\n \"with_branches\": false,\n \"okved\": \"<string>\",\n \"okato\": \"<string>\",\n \"okfs\": \"<string>\",\n \"okogu\": \"<string>\",\n \"employees_min\": 1,\n \"employees_max\": 1,\n \"revenue_min\": 1,\n \"revenue_max\": 1,\n \"profit_min\": 123,\n \"profit_max\": 123,\n \"assets_min\": 1,\n \"assets_max\": 1,\n \"registered_after\": \"<string>\",\n \"registered_before\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/listorg/companies/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"type\": \"all\",\n \"sort\": \"relevance\",\n \"active_only\": false,\n \"has_sole_proprietor\": false,\n \"active_sole_proprietor\": false,\n \"prefix_match\": false,\n \"include_historical\": false,\n \"with_phone\": false,\n \"with_website\": false,\n \"with_email\": false,\n \"with_branches\": false,\n \"okved\": \"<string>\",\n \"okato\": \"<string>\",\n \"okfs\": \"<string>\",\n \"okogu\": \"<string>\",\n \"employees_min\": 1,\n \"employees_max\": 1,\n \"revenue_min\": 1,\n \"revenue_max\": 1,\n \"profit_min\": 123,\n \"profit_max\": 123,\n \"assets_min\": 1,\n \"assets_max\": 1,\n \"registered_after\": \"<string>\",\n \"registered_before\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"url": "<string>",
"@type": "ListorgCompanySearchResult",
"name": "<string>",
"full_name": "<string>",
"status": "<string>",
"is_active": true,
"inn": "<string>",
"kpp": "<string>",
"director": "<string>",
"address": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Minimum string length:
1Required range:
x >= 1Required range:
20 <= x <= 1500Available options:
all, name, inn, ogrn, okpo, director_founder, phone, address, bank_bic Available options:
relevance, popularity, registration_desc, registration_asc, employees_desc, employees_asc, revenue_desc, revenue_asc, profit_desc, profit_asc, assets_desc, assets_asc Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0⌘I