Skip to main content
POST
/
api
/
bonalog
/
organizations
/bonalog/organizations
curl --request POST \
  --url https://api.anysite.io/api/bonalog/organizations \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": 123,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@bonalog_organization",
    "inn": "<string>",
    "ogrn": "<string>",
    "kpp": "<string>",
    "full_name": "<string>",
    "short_name": "<string>",
    "status_code": "<string>",
    "status_date": "<string>",
    "registration_date": "<string>",
    "authorized_capital": 123,
    "is_active": true,
    "address": {
      "@type": "@bonalog_address",
      "index": "<string>",
      "region": "<string>",
      "district": "<string>",
      "city": "<string>",
      "settlement": "<string>",
      "street": "<string>",
      "house": "<string>",
      "building": "<string>",
      "office": "<string>"
    },
    "okved2": {
      "@type": "@bonalog_classifier",
      "id": "<string>",
      "name": "<string>"
    },
    "okopf": {
      "@type": "@bonalog_classifier",
      "id": "<string>",
      "name": "<string>"
    },
    "tax_authority": {
      "@type": "@bonalog_tax_authority",
      "id": 123,
      "name": "<string>",
      "code": 123,
      "latitude": 123,
      "longitude": 123,
      "type": "<string>",
      "parent_id": 123
    },
    "reports": [
      {
        "@type": "@bonalog_report_summary",
        "period": "<string>",
        "publication": 123,
        "actual_bfo_date": "<string>",
        "gain_sum": 123,
        "actives": 123,
        "knd": "<string>",
        "has_audit": true,
        "actual_correction_number": 123,
        "actual_correction_date": "<string>",
        "published_correction_number": 123,
        "published_correction_date": "<string>",
        "is_cb": true,
        "msp_category": "<string>",
        "published": true
      }
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
integer
required

Organization identifier

Examples:

6622458

8211141

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@bonalog_organization
inn
string | null
ogrn
string | null
kpp
string | null
full_name
string | null
short_name
string | null
status_code
string | null
status_date
string | null
registration_date
string | null
authorized_capital
number | null
is_active
boolean | null
address
BonalogAddress · object
okved2
BonalogClassifier · object
okopf
BonalogClassifier · object
tax_authority
BonalogTaxAuthority · object
reports
BonalogReportSummary · object[]