Skip to main content
POST
/
api
/
pbnalog
/
documents
/
search
/pbnalog/documents/search
curl --request POST \
  --url https://api.anysite.io/api/pbnalog/documents/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "ogrn": "1027700132195",
  "name": "Иванов",
  "date_from": "01.01.2025",
  "date_to": "31.12.2025"
}
'
[
  {
    "np_type": "<string>",
    "@type": "@pbnalog_document",
    "inn": "<string>",
    "ogrn": "<string>",
    "grn": "<string>",
    "form": "<string>",
    "applicant": "<string>",
    "tax_authority": "<string>",
    "incoming_number": "<string>",
    "channel": "<string>",
    "decision": "<string>",
    "submitted_at": "<string>",
    "completed_at": "<string>"
  }
]

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 to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
ogrn
string | null

OGRN (13 digits) or OGRNIP (15 digits) whose filed documents to list

Example:

"1027700132195"

name
string | null

Applicant name to search filed documents by

Example:

"Иванов"

np_type
enum<string> | null

Restrict to legal-entity (ul) or sole-proprietor (ip) documents

Available options:
ul,
ip
form
enum<string> | null

Restrict to a specific registration application form code

Available options:
Р12003,
Р12016,
Р13014,
Р15016,
Р16002,
Р18002,
Р18003,
Р18004,
Р19001,
Р34001,
Р34002,
Р38001,
Р24001,
Р24002,
Р26001,
Р26002
date_from
string | null

Earliest submission date (DD.MM.YYYY)

Example:

"01.01.2025"

date_to
string | null

Latest submission date (DD.MM.YYYY)

Example:

"31.12.2025"

Response

Successful Response

np_type
string
required
@type
string
default:@pbnalog_document
inn
string | null
ogrn
string | null
grn
string | null
form
string | null
applicant
string | null
tax_authority
string | null
incoming_number
string | null
channel
string | null
decision
string | null
submitted_at
string | null
completed_at
string | null