# DaData.ru

DaData provides APIs for data validation, standardization, and enrichment, including address parsing, company information retrieval, and more.

- **Category:** developer tools
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 63
- **Triggers:** 0
- **Slug:** `DADATA_RU`
- **Version:** 20260227_00

## Tools

### Clean Address

**Slug:** `DADATA_RU_CLEAN_ADDRESS`

Clean and standardize a Russian postal address. Converts a free-form address string into a structured object with parsed components (region, city, street, house, etc.), geographic coordinates, postal code, and quality indicators. Useful for address validation, geocoding, and data normalization.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `address` | string | Yes | Raw Russian address string to clean and standardize. Examples: 'москва, красная площадь 1', 'санкт-петербург невский 28' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Birthdate

**Slug:** `DADATA_RU_CLEAN_BIRTHDATE`

Standardize and validate birthdate strings. Accepts various formats (DD.MM.YYYY, M/D/YY, Russian text dates) and normalizes to DD.MM.YYYY. Returns quality code indicating parse success.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `birthdate` | string | Yes | Birthdate string to clean (e.g., '22.08.1966', '3/7/85'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Email

**Slug:** `DADATA_RU_CLEAN_EMAIL`

Standardize and validate an email address. Fixes typos in domains (e.g., 'gnail.con' → 'gmail.com'), validates format, and classifies as PERSONAL, CORPORATE, ROLE, or DISPOSABLE. Use to clean user-provided emails before storing or sending mail.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | Email address to clean, validate and standardize. Fixes typos in domains (e.g., 'gnail.con' → 'gmail.com') and validates format. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Name (FIO)

**Slug:** `DADATA_RU_CLEAN_NAME`

Tool to standardize and parse full names (FIO), detect gender, and return grammatical cases. Use when you need structured name parsing and declensions from raw FIO inputs.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `fio` | string | Yes | A raw full name string (FIO) in Russian to standardize and parse. Can be in any order (e.g., 'Иванов Иван Иванович' or 'Иван Иванович Иванов'). The API will normalize, detect gender, and return grammatical declensions. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Passport

**Slug:** `DADATA_RU_CLEAN_PASSPORT`

Tool to validate a Russian passport number against the official registry. Use after collecting passport details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `passport` | string | Yes | Passport series and number in a single string, e.g. '4509 235857' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Phone

**Slug:** `DADATA_RU_CLEAN_PHONE`

Tool to standardize and validate phone numbers. Use when you need to convert arbitrary phone inputs into a uniform, validated 11-digit format for further processing.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `phones` | array | Yes | List of phone numbers to standardize and validate. Provide numbers in any format, including international formats. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Composite Record

**Slug:** `DADATA_RU_CLEAN_RECORD`

Tool to standardize composite records with multiple contact data fields in a single request. Use when you need to clean records containing combinations of name, address, phone, email, passport, birthdate, or vehicle data. More efficient than calling individual clean actions separately for multi-field records.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | array | Yes | Array of records to clean. Each record is an array of values matching the structure order. For example, if structure is ['NAME', 'PHONE'], then each record should be ['Иван Петров', '8 916 123 45 67']. |
| `structure` | array | Yes | Array of field types in order. Valid values: NAME (full name), ADDRESS (postal address), PHONE (phone number), PASSPORT (passport data), BIRTHDATE (birth date), EMAIL (email address), VEHICLE (vehicle registration number), AS_IS (pass through unchanged), SIMPLE_PARTY_NAME (company name without legal form). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Clean Vehicle

**Slug:** `DADATA_RU_CLEAN_VEHICLE`

Standardize and recognize vehicle make/model from free-form text input. Returns normalized brand and model names with a quality confidence code. Use this to clean user-entered vehicle descriptions like 'ford focus' or 'land r0ver'.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `vehicle` | string | Yes | Vehicle string to standardize, typically a car make and model (e.g., 'ford focus', 'land rover range rover', 'audi a6 2018'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Address

**Slug:** `DADATA_RU_FIND_ADDRESS`

Retrieve full Russian address details by FIAS ID, KLADR code, or cadastral number. Returns structured data including postal code, region, city, street, coordinates, and administrative codes (OKATO, OKTMO, tax office). Use this when you have an address identifier and need the complete address breakdown.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Address identifier: FIAS ID (UUID like '9120b43f-2fae-4838-a144-85e43c2bfb29'), KLADR code (numeric like '77000000000268400'), or cadastral number. FIAS searches down to apartment level, KLADR only to street level. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Bank

**Slug:** `DADATA_RU_FIND_BANK`

Tool to find bank by BIC, SWIFT, INN, or registration number. Use when you need full bank details for a specific identifier. Provide optional KPP for branch-level queries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `kpp` | string | No | Tax Registration Reason Code (KPP), used together with INN for specific branch queries |
| `query` | string | Yes | Bank identifier: BIC, SWIFT, INN, or registration number |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Car Brand

**Slug:** `DADATA_RU_FIND_CAR_BRAND`

Find car brand details by identifier. Returns brand information including English and Russian names. Use this when you have a car brand ID (like 'FORD', 'BMW', 'TOYOTA') and need its details. For autocomplete/search by partial name, use suggest_car_brand instead.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Car brand identifier (ID) to search for. Use uppercase brand names like 'FORD', 'BMW', 'TOYOTA', 'MERCEDES'. The search is case-insensitive. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Company By Email

**Slug:** `DADATA_RU_FIND_COMPANY_BY_EMAIL`

Find companies by corporate email address domain. Extracts company registration details including INN, OGRN, name, location, and business activity from the email domain.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Maximum number of results to return (1-300). Defaults to 10 if not specified. |
| `query` | string | Yes | Corporate email address to search for company information. The service extracts the domain and finds associated companies. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Country

**Slug:** `DADATA_RU_FIND_COUNTRY`

Tool to find country details by ISO or numeric code. Use when you have a valid country code and need full metadata.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Country code in ISO 3166-1 alpha-2, alpha-3, or numeric format |
| `language` | string ("ru" | "en") | No | Response language: 'ru' (default) or 'en' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Court by ID

**Slug:** `DADATA_RU_FIND_COURT_BY_ID`

Find court by ID or code. Returns court details including name, address, and jurisdiction. Use when you have a specific court code and need complete court information.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Court code to search for (e.g., '52MS0022'). Searches by the 'code' field. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Currency

**Slug:** `DADATA_RU_FIND_CURRENCY`

Tool to find currency details by ISO 4217 code. Use when you have a currency code and need its full metadata.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Currency code (numeric ISO 4217 or alphabetic ISO 4217, e.g., '643' or 'RUB') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Delivery City IDs

**Slug:** `DADATA_RU_FIND_DELIVERY`

Retrieves delivery service city identifiers (CDEK, Boxberry, DPD) for a given Russian city by KLADR code or FIAS ID. Use this tool when integrating with Russian delivery services and you need to map a city to the corresponding IDs used by CDEK, Boxberry, or DPD. Returns an empty suggestions list if the city is not found.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | KLADR code (13-digit, e.g., '7700000000000' for Moscow) or FIAS ID (UUID, e.g., '0c5b2444-70a0-4932-980c-b4dc0d3f02b5') of the city |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Address by FIAS ID

**Slug:** `DADATA_RU_FIND_FIAS_BY_ID`

Find address by FIAS ID from the Federal Information Address System (FIAS/GAR). Returns structured address details including postal code, region, city, street, coordinates, and administrative codes. Use when you have a FIAS GUID and need the complete address breakdown.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Maximum number of results to return (1-300). Default is 10 if omitted. |
| `query` | string | Yes | FIAS ID (GUID format) to search for. Example: '9120b43f-2fae-4838-a144-85e43c2bfb29' |
| `to_bound` | object | No | Boundary configuration for limiting search results. |
| `from_bound` | object | No | Boundary configuration for limiting search results. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find FMS Unit

**Slug:** `DADATA_RU_FIND_FMS_UNIT`

Look up Russian passport issuing authority (FMS unit) by subdivision code. Returns all departments associated with the given code (e.g., main office, passport desks). Use SUGGEST_FMS_UNIT action for text-based search by name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Russian passport subdivision code in format 'XXX-YYY' (e.g., '770-001' for Moscow, '780-001' for St. Petersburg). The first 2-3 digits indicate the region code. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find FNS Unit by Code

**Slug:** `DADATA_RU_FIND_FNS_UNIT`

Find Russian tax inspection (FNS unit) by exact code or INN. Returns inspection details including address, contact info, payment details, and parent unit information. Use SUGGEST_FNS_UNIT action for text-based search by name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Tax inspection code (e.g., '5257') or INN (taxpayer identification number) to search. Maximum 300 characters. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find FTS Unit

**Slug:** `DADATA_RU_FIND_FTS_UNIT`

Find a Russian Federal Customs Service (FTS) unit by its 8-digit code. Returns detailed information including the unit's name, address, contact details (phone, fax, email), and registration numbers (INN, OGRN, OKPO). Use this when you need to look up customs office details by a known code.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Maximum number of results to return. Defaults to 1 if not specified. |
| `query` | string | Yes | 8-digit FTS unit code (e.g., '10000000' for Federal Customs Service headquarters, '10100000' for Central Customs Administration) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Medical Position By ID

**Slug:** `DADATA_RU_FIND_MEDICAL_POSITION_BY_ID`

Tool to find medical position by ID code. Use when you have a medical position ID and need its full name and details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Medical position ID code to search for. The lookup operates exclusively on the id field of medical position records. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find MKTU

**Slug:** `DADATA_RU_FIND_MKTU`

Look up MKTU (International Classification of Goods and Services/Nice Classification) items by their numeric code. Returns detailed information including class number, item number, and names in Russian, English, and French. Use this when you have a specific MKTU code and need its full details. For searching by keywords/descriptions, use the suggest_mktu action instead.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Maximum number of results to return (1-20). Defaults to 1 if not specified |
| `query` | string | Yes | MKTU item number/code to search for. Use the full numeric code (e.g., '250173' for felted boots in class 25) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find OKPD2 by ID

**Slug:** `DADATA_RU_FIND_OKPD2_BY_ID`

Look up OKPD2 (Russian Classification of Products by Economic Activity) entries by their exact code. Use this to get the official name, section, and classification details for a known OKPD2 code. Returns the section, index, code, and description of the product classification. For searching by product name/description, use the suggest_okpd2 action instead.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | OKPD2 code to look up (e.g., '95.23.10.133' for funeral services). Must be a valid OKPD2 code. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find OKPDTR Position

**Slug:** `DADATA_RU_FIND_OKPDTR_POSITION`

Find job position by OKPDTR code. Returns position name and tariff grade. Use this to retrieve official position title and classification details for a known OKPDTR code.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | OKPDTR position code to look up (e.g., '201294' for assembler). Must be a valid OKPDTR code. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find OKPDTR Profession

**Slug:** `DADATA_RU_FIND_OKPDTR_PROFESSION`

Tool to find profession details by OKPDTR code. Returns profession name and tariff grade from the All-Russian Classifier of Worker Professions. Use when you have an OKPDTR code and need full profession metadata.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | OKPDTR profession code to search for (e.g., '100845'). Maximum length: 300 characters. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Territory by OKTMO

**Slug:** `DADATA_RU_FIND_OKTMO_BY_ID`

Find Russian municipal territory by OKTMO code. Returns municipality name and administrative hierarchy (district and settlement levels). Use when you have a specific OKTMO code and need to look up the corresponding territory details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | OKTMO code to search for (8 or 11 digits). 8 digits identify municipal district level, 11 digits include settlement level. Example: '54623425' for specific municipality. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find OKVED2

**Slug:** `DADATA_RU_FIND_OKVED2`

Look up OKVED2 (Russian Classification of Economic Activities) entries by their exact code. Use this to get the official name and classification details for a known OKVED2 code. Returns the section, index, and description of the economic activity. For searching by activity name/description, use the suggest_okved2 action instead.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | OKVED2 code to look up (e.g., '62.01' for software development, '51.22.3' for wholesale trade). Must be a valid numeric OKVED2 code. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Company or Entrepreneur

**Slug:** `DADATA_RU_FIND_PARTY`

Find company or individual entrepreneur details by INN or OGRN from the Russian Federal Tax Service registry. Returns full registration data including legal name, address, status, management, and organizational form. Use KPP parameter to filter by specific branch.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `kpp` | string | No | KPP (Tax Registration Reason Code, 9 digits) to filter by specific branch. Only useful when searching for branches of a company. |
| `type` | string ("LEGAL" | "INDIVIDUAL") | No | Filter by entity type: 'LEGAL' for companies/organizations, 'INDIVIDUAL' for sole proprietors |
| `count` | integer | No | Maximum number of results to return (1-300). Default is 10. |
| `query` | string | Yes | INN (10 digits for legal entities, 12 for individuals) or OGRN (13 digits for legal entities, 15 for individuals) to search |
| `branch_type` | string ("MAIN" | "BRANCH") | No | Filter by branch type: 'MAIN' for head office only, 'BRANCH' for branches only. Omit to get both. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Belarus Party by UNP

**Slug:** `DADATA_RU_FIND_PARTY_BY`

Tool to find a Belarusian company or entrepreneur by UNP. Use when you have the UNP and need the full registry record. Example: "Find party by UNP = 190657494".

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | UNP (Belarus taxpayer ID) or other identifier to lookup. |
| `filters` | array | No | Optional list of filters to narrow results. Each filter may include `status` or `type`. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Kazakhstan Company by BIN

**Slug:** `DADATA_RU_FIND_PARTY_KZ`

Look up Kazakhstan company or entrepreneur details by BIN (Business Identification Number). Returns registration data including name, address, director, activity codes, and classification codes. Use when you have a 12-digit BIN and need official registry information for a KZ entity.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | 12-digit BIN (Business Identification Number) of the Kazakhstan company to look up. Example: '140440031745' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Postal Office

**Slug:** `DADATA_RU_FIND_POSTAL_OFFICE`

Find Russian postal office details by postal code (index). Returns office name, address, type, and activation date. Use when you need to look up postal office information for a specific postal code.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Postal code (index number) to search for. Must be a valid Russian postal code (6 digits). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find Postal Unit By ID

**Slug:** `DADATA_RU_FIND_POSTAL_UNIT_BY_ID`

Find postal unit by postal code. Returns postal office details including address and schedule. Use when you have a specific postal code and need complete information about that postal office location.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Postal code to search for (6-digit Russian postal code) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Geolocate Address

**Slug:** `DADATA_RU_GEOLOCATE_ADDRESS`

Tool to find nearest addresses by geographic coordinates. Use when you need address suggestions around a specific location.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the point in decimal degrees |
| `lon` | number | Yes | Longitude of the point in decimal degrees |
| `count` | integer | No | Number of results to return (max: 20, default: 5) |
| `radius_meters` | integer | No | Search radius in meters (default: 100) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Geolocate Postal Unit

**Slug:** `DADATA_RU_GEOLOCATE_POSTAL_UNIT`

Tool to find nearest postal units by geographic coordinates. Use when you need to locate post offices near a specific location.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `lat` | number | Yes | Latitude of the point in decimal degrees |
| `lon` | number | Yes | Longitude of the point in decimal degrees |
| `count` | integer | No | Number of results to return (max: 20, default: 5) |
| `radius_meters` | integer | No | Search radius in meters (default: 1000) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Profile Balance

**Slug:** `DADATA_RU_GET_PROFILE_BALANCE`

Tool to retrieve current DaData account balance. Use before making API calls that consume funds.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Profile Statistics

**Slug:** `DADATA_RU_GET_PROFILE_STATISTICS`

Tool to get daily aggregated usage statistics per DaData API service. Use when you need a breakdown of calls and remaining balances for a specific date.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `date` | string | No | Date for statistics in YYYY-MM-DD format. If not provided, returns today's statistics. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Reference Versions

**Slug:** `DADATA_RU_GET_REFERENCE_VERSIONS`

Tool to retrieve the last update dates for DaData reference datasets (FIAS, EGRUL, banks, etc.). Use before performing operations that depend on the currency of reference data.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### IP Locate Address

**Slug:** `DADATA_RU_IP_LOCATE_ADDRESS`

Geolocate a Russian IP address to determine its city/region. Returns detailed location data including postal code, city, region, federal district, timezone, and coordinates. Only works for IP addresses registered in Russia; non-Russian IPs will return null. Accuracy is 60-80%.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `ip` | string | Yes | IPv4 or IPv6 address to geolocate. Only works for Russian IP addresses; returns null for non-Russian IPs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Address

**Slug:** `DADATA_RU_SUGGEST_ADDRESS`

Tool to autocomplete and suggest addresses. Use when user types partial address fragments to retrieve possible address completions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Text fragment to autocomplete addresses |
| `bounds` | array | No | Restrict suggestions to certain address levels (e.g., ['city','street']) |
| `geo_lat` | number | No | Latitude for geo-based ranking of suggestions |
| `geo_lon` | number | No | Longitude for geo-based ranking of suggestions |
| `language` | string ("ru" | "en") | No | Response language: 'ru' or 'en' |
| `to_bound` | object | No | Upper boundary of address granularity |
| `from_bound` | object | No | Lower boundary of address granularity |
| `radius_meters` | integer | No | Radius around geo coordinates in meters to narrow search |
| `restrict_value` | boolean | No | Whether to restrict results to the specified bounds only |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Bank

**Slug:** `DADATA_RU_SUGGEST_BANK`

Tool to autocomplete and suggest banks by partial details. Use when you need to find Russian banks by name, BIC, INN, SWIFT, or registry number.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20) |
| `query` | string | Yes | Search text: partial name, BIC, INN, SWIFT, or registration number |
| `filters` | object | No | Optional filters to refine bank suggestions. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Car Brand

**Slug:** `DADATA_RU_SUGGEST_CAR_BRAND`

Tool to suggest car brands. Use when you need to autocomplete or correct partial car brand names in Russian or English.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Maximum number of suggestions to return. Defaults to 10 |
| `query` | string | Yes | Text fragment to autocomplete car brands |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Country

**Slug:** `DADATA_RU_SUGGEST_COUNTRY`

Tool to suggest countries based on user input. Use when you need country autocompletion or search.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search string for country suggestions (country name, ISO code, or abbreviation) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Court

**Slug:** `DADATA_RU_SUGGEST_COURT`

Tool to suggest Russian courts by name or location. Use when user types partial court name or provides filters to retrieve possible court suggestions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Text fragment to search courts by name or address |
| `filters` | object | No | Additional search filters (e.g., {'region_code': '77', 'court_type': 'arbitration'}) |
| `locations` | array | No | Filter results by FIAS-based location identifiers |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Currency

**Slug:** `DADATA_RU_SUGGEST_CURRENCY`

Tool to suggest currencies by ISO 4217 code or name. Use when you need currency autocompletion.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Currency code or name to search for |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Email

**Slug:** `DADATA_RU_SUGGEST_EMAIL`

Tool to autocomplete and suggest email addresses. Use when user provides an email prefix and you need possible completions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Email prefix or partial email to autocomplete |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest FIAS Address

**Slug:** `DADATA_RU_SUGGEST_FIAS`

Tool to suggest addresses from FIAS/GAR database. Use when you need official Russian addresses that strictly match the federal address system (FIAS/GAR).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return. Defaults to 10 if omitted |
| `query` | string | Yes | Address query string to search in FIAS/GAR database |
| `to_bound` | object | No | Granularity boundary for FIAS address suggestion. |
| `locations` | array | No | List of locations to filter suggestions by specific address components |
| `from_bound` | object | No | Granularity boundary for FIAS address suggestion. |
| `restrict_value` | boolean | No | Whether to restrict results to the specified bounds only. Defaults to false |
| `locations_boost` | array | No | List of locations to boost in search results using KLADR ID |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest FMS Unit

**Slug:** `DADATA_RU_SUGGEST_FMS_UNIT`

Tool to autocomplete and suggest passport issuing authorities. Use when you need to lookup Russian FMS units by partial code or name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Text fragment to search for a passport issuing authority by code or name |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest FNS Unit

**Slug:** `DADATA_RU_SUGGEST_FNS_UNIT`

Tool to suggest Russian tax inspection units by partial name or code. Use when you need to identify a tax inspection authority from incomplete user input. For example, use query='7700' to retrieve units with code 7700.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1-20); defaults to 10 if omitted |
| `query` | string | Yes | Text fragment to search for a tax inspection unit by name or code |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest FTS Unit

**Slug:** `DADATA_RU_SUGGEST_FTS_UNIT`

Tool to autocomplete and suggest Russian customs (FTS) units. Use when user provides partial name or code to retrieve matching offices.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Maximum number of suggestions to return (1-20). Defaults to 10 if omitted. |
| `query` | string | Yes | Search query - partial name or code of a Russian customs (FTS) unit. Supports Cyrillic text or numeric codes. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Medical Position

**Slug:** `DADATA_RU_SUGGEST_MEDICAL_POSITION`

Tool to autocomplete and suggest medical positions and specialties. Use when you need to find medical worker positions by partial name or code.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1-20). Defaults to 10 if omitted |
| `query` | string | Yes | Search query for medical position name or code (e.g., 'врач', 'терапевт', 'медсестра') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Metro

**Slug:** `DADATA_RU_SUGGEST_METRO`

Tool to suggest metro stations. Use when you need to autocomplete metro station names in Russian cities.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (minimum 1) |
| `query` | string | Yes | Text fragment to autocomplete metro station names |
| `filters` | array | No | Optional list of filters to narrow down suggestions |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest MKTU

**Slug:** `DADATA_RU_SUGGEST_MKTU`

Autocomplete and search for MKTU (Nice Classification) codes used for trademark registration. MKTU is the International Classification of Goods and Services for trademark purposes. Use this to find class codes and item numbers by searching names in Russian, English, or by class number. Returns multilingual names (Russian, English, French) and classification codes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search term for MKTU suggestions. Can be a class number (e.g., '35'), Russian text (e.g., 'реклама'), or English word that may appear in item descriptions |
| `filter` | object | No | Additional filters to narrow suggestions. E.g., {'code': '35'} |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Name

**Slug:** `DADATA_RU_SUGGEST_NAME`

Tool to autocomplete and suggest full names (FIO). Use when user types partial name fragments to retrieve possible full name completions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `parts` | array | No | Specific name parts to search: ['SURNAME','NAME','PATRONYMIC'] |
| `query` | string | Yes | Text fragment to autocomplete full names (FIO) |
| `gender` | string ("MALE" | "FEMALE") | No | Filter suggestions by gender: 'MALE' or 'FEMALE' |
| `language` | string ("ru" | "en") | No | Response language: 'ru' or 'en'. Defaults to 'ru' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest OKPD2

**Slug:** `DADATA_RU_SUGGEST_OKPD2`

Tool to autocomplete and suggest Russian product classification codes (OKPD2). Use when you need to find or validate OKPD2 codes by partial queries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search query for OKPD2 code or name |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest OKPDTR Position

**Slug:** `DADATA_RU_SUGGEST_OKPDTR_POSITION`

Tool to autocomplete and suggest Russian job positions from OKPDTR classifier. Use when you need to find or validate OKPDTR position codes by partial queries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search query for OKPDTR job position code or name (max 300 characters) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest OKPDTR Profession

**Slug:** `DADATA_RU_SUGGEST_OKPDTR_PROFESSION`

Tool to autocomplete and suggest professions from OKPDTR classifier. Use when you need to find profession codes and names by partial queries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search query for profession name from OKPDTR classifier |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest OKTMO

**Slug:** `DADATA_RU_SUGGEST_OKTMO`

Suggest Russian municipal territory codes (OKTMO) by code prefix or partial name. OKTMO (Общероссийский классификатор территорий муниципальных образований) is a classifier for Russian municipal territories. Use this tool to: - Autocomplete OKTMO codes when user starts typing a code prefix (e.g., '45' for Moscow) - Look up a specific OKTMO code to get territory details - Search for municipalities by partial code match Returns district (area) and settlement (subarea) information for each match.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1-20). Defaults to 10 if omitted. |
| `query` | string | Yes | Search query for OKTMO codes. Can be an OKTMO code or code prefix (e.g., '45' for Moscow, '78' for Yaroslavl Oblast), or a partial name. Maximum 300 characters. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest OKVED2

**Slug:** `DADATA_RU_SUGGEST_OKVED2`

Tool to suggest OKVED2 codes by text query. Use when you have a fragment of a Russian economic activity code or name and need structured suggestions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted. |
| `query` | string | Yes | Fragment of OKVED2 code or activity name to search for |
| `to_bound` | object | No | Upper boundary of OKVED2 selection |
| `from_bound` | object | No | Lower boundary of OKVED2 selection |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Party

**Slug:** `DADATA_RU_SUGGEST_PARTY`

Tool to autocomplete and suggest Russian companies or entrepreneurs. Use when you have a partial name, INN, OGRN, or address and need structured suggestions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string ("LEGAL" | "INDIVIDUAL") | No | Filter by entity type: "LEGAL" (juridical) or "INDIVIDUAL" (entrepreneur). |
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted. |
| `query` | string | Yes | Search query: company name, INN, OGRN, address, etc. |
| `status` | array | No | Filter by entity status. |
| `filters` | array | No | Additional filters as defined in DaData docs (e.g., legalForm, region). |
| `branches` | string ("main" | "all") | No | Which branches to include: "main" only, or "all" (default). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Belarus Party

**Slug:** `DADATA_RU_SUGGEST_PARTY_BY`

Tool to autocomplete and suggest Belarusian companies or entrepreneurs. Use when you have a partial name, UNP, or address and need structured suggestions from Belarus EGRUL registry.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted. |
| `query` | string | Yes | Search query: company name, UNP, address, or other identifying information for Belarus companies. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Kazakhstan Company

**Slug:** `DADATA_RU_SUGGEST_PARTY_KZ`

Tool to autocomplete and suggest Kazakhstan companies or entrepreneurs. Use when you have a partial company name, BIN, or address and need structured suggestions from Kazakhstan business registry.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted. |
| `query` | string | Yes | Search query: company name, BIN (Business Identification Number), or address. Can be in Russian or Kazakh. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Postal Office

**Slug:** `DADATA_RU_SUGGEST_POSTAL_OFFICE`

Suggests Russian Post offices by postal code or address. Returns postal code, address, and schedule. Use for autocompleting postal codes or finding post office details like working hours and location.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search string for finding postal offices: address fragment or postal code |
| `filters` | object | No | Optional filters to refine postal office suggestions. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Suggest Postal Unit

**Slug:** `DADATA_RU_SUGGEST_POSTAL_UNIT`

Suggests Russian Post offices (Почта России) by postal code or address. Use for autocompleting postal codes, finding post offices by address fragments, or getting details like working hours and location coordinates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `count` | integer | No | Number of suggestions to return (1–20). Defaults to 10 if omitted |
| `query` | string | Yes | Search string: postal unit name, address fragment, or postal code |
| `filters` | object | No | Optional filters to refine postal unit suggestions. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
