Skip to main content
POST
/
api
/
bonalog
/
organizations
/
search
/bonalog/organizations/search
curl --request POST \
  --url https://api.anysite.io/api/bonalog/organizations/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "",
  "inn": "",
  "ogrn": "",
  "address": "",
  "okved2": "",
  "period": "",
  "is_cb": true,
  "all_fields_match": false
}
'
[
  {
    "id": 123,
    "@type": "@bonalog_organization_search_item",
    "inn": "<string>",
    "ogrn": "<string>",
    "short_name": "<string>",
    "status_code": "<string>",
    "status_date": "<string>",
    "address": {
      "@type": "@bonalog_address",
      "index": "<string>",
      "region": "<string>",
      "district": "<string>",
      "city": "<string>",
      "settlement": "<string>",
      "street": "<string>",
      "house": "<string>",
      "building": "<string>",
      "office": "<string>"
    },
    "okved2": "<string>",
    "okopf": 123,
    "report": {
      "@type": "@bonalog_organization_search_bfo",
      "period": "<string>",
      "actual_bfo_date": "<string>",
      "gain_sum": 123,
      "knd": "<string>",
      "has_audit": true,
      "actual_correction_number": 123,
      "actual_correction_date": "<string>",
      "is_cb": true
    }
  }
]

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

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
query
string
default:""

Organization name or INN to search for

Example:

"Газпром"

inn
string
default:""

Filter by exact taxpayer number (INN)

Example:

"7736050003"

ogrn
string
default:""

Filter by exact primary state registration number (OGRN)

address
string
default:""

Filter by address substring (region, city, street)

okved2
string
default:""

Filter by OKVED2 activity code or its prefix

Example:

"46.71"

period
string
default:""

Filter by accounting-statement reporting year

Example:

"2024"

period_type
enum<string> | null

Filter by reporting-period type: 3=Q1, 6=H1, 9=9 months, 12=annual

Available options:
3,
6,
9,
12
is_cb
boolean | null

Filter to credit organizations only

all_fields_match
boolean
default:false

Require all provided filters to match exactly

Response

Successful Response

id
integer
required
@type
string
default:@bonalog_organization_search_item
inn
string | null
ogrn
string | null
short_name
string | null
status_code
string | null
status_date
string | null
address
BonalogAddress · object
okved2
string | null
okopf
integer | null
report
BonalogOrganizationSearchBfo · object