Skip to main content
POST
/
api
/
fedresurs
/
companies
/fedresurs/companies
curl --request POST \
  --url https://api.anysite.io/api/fedresurs/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "guid": "<string>",
    "@type": "@fedresurs_company",
    "name": "<string>",
    "inn": "<string>",
    "ogrn": "<string>",
    "category": "<string>",
    "region": "<string>",
    "address": "<string>",
    "status": "<string>",
    "status_update_date": "<string>",
    "is_active": true,
    "last_legal_case": {
      "@type": "@fedresurs_legal_case",
      "number": "<string>",
      "arbitr_manager_fio": "<string>",
      "status": {
        "@type": "@fedresurs_legal_case_status",
        "code": "<string>",
        "description": "<string>",
        "date": "<string>"
      }
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Legal-entity INN (10 digits) or OGRN (13 digits)

Examples:

"1655292652"

"1141690033825"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

guid
string
required
@type
string
default:@fedresurs_company
name
string | null
inn
string | null
ogrn
string | null
category
string | null
region
string | null
address
string | null
status
string | null
status_update_date
string | null
is_active
boolean | null