Skip to main content
POST
/
api
/
listorg
/
companies
/listorg/companies
curl --request POST \
  --url https://api.anysite.io/api/listorg/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@listorg_company",
    "name": "<string>",
    "full_name": "<string>",
    "status": "<string>",
    "is_active": true,
    "inn": "<string>",
    "kpp": "<string>",
    "ogrn": "<string>",
    "okpo": "<string>",
    "okato": "<string>",
    "oktmo": "<string>",
    "okopf": "<string>",
    "okfs": "<string>",
    "okogu": "<string>",
    "director": {
      "@type": "@listorg_director",
      "name": "<string>",
      "position": "<string>"
    },
    "charter_capital": 123,
    "employee_count": 123,
    "founder_count": 123,
    "created_at": "<string>",
    "registered_at": "<string>",
    "postal_code": "<string>",
    "address": "<string>",
    "legal_address": "<string>",
    "latitude": 123,
    "longitude": 123,
    "phones": [],
    "email": "<string>",
    "website_url": "<string>",
    "main_activity": {
      "@type": "@listorg_activity",
      "code": "<string>",
      "name": "<string>"
    },
    "activities": [],
    "founders": [],
    "successors": [],
    "predecessors": [],
    "sfr_registrations": [],
    "licenses": [],
    "inspections": [],
    "fedresurs_messages": [],
    "vestnik_messages": [],
    "procurement_223": {
      "@type": "@listorg_procurement223",
      "contract_count": 123,
      "total_sum": "<string>",
      "top_customers": []
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company INN (10 digits), OGRN (13 digits), internal List-Org id, or a full company URL

Minimum string length: 1
Examples:

"7736207543"

"1027700229193"

"54446"

"https://www.list-org.com/company/54446"

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_company
name
string | null
full_name
string | null
status
string | null
is_active
boolean | null
inn
string | null
kpp
string | null
ogrn
string | null
okpo
string | null
okato
string | null
oktmo
string | null
okopf
string | null
okfs
string | null
okogu
string | null
director
ListorgDirector · object
charter_capital
integer | null
employee_count
integer | null
founder_count
integer | null
created_at
string | null
registered_at
string | null
postal_code
string | null
address
string | null
latitude
number | null
longitude
number | null
phones
string[]
email
string | null
website_url
string | null
main_activity
ListorgActivity · object
activities
ListorgActivity · object[]
founders
ListorgFounder · object[]
successors
ListorgCompanyRef · object[]
predecessors
ListorgCompanyRef · object[]
sfr_registrations
ListorgSfrRegistration · object[]
licenses
ListorgLicense · object[]
inspections
ListorgInspection · object[]
fedresurs_messages
ListorgFedresursMessage · object[]
vestnik_messages
ListorgVestnikMessage · object[]
procurement_223
ListorgProcurement223 · object