DaData provides APIs for data validation, standardization, and enrichment, including address parsing, company information retrieval, and more.
DaData provides APIs for data validation, standardization, and enrichment, including address parsing, company information retrieval, and more. On Nagent, DaData.ru is exposed as a fully-configurable developer tools integration that any agent can call — 63 actions, and API key authentication. No code is required to wire DaData.ru into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use DaData.ru to automate the kinds of tasks developer tools teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire DaData.ru into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against DaData.ru, with input parameters and output schema. Drop these into any step of an agent built in Helix.
DADATA_RU_CLEAN_ADDRESSClean 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
Raw Russian address string to clean and standardize. Examples: 'москва, красная площадь 1', 'санкт-петербург невский 28'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_BIRTHDATEStandardize 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
Birthdate string to clean (e.g., '22.08.1966', '3/7/85').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_EMAILStandardize 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
Email address to clean, validate and standardize. Fixes typos in domains (e.g., 'gnail.con' → 'gmail.com') and validates format.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_NAMETool 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
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_PASSPORTTool to validate a Russian passport number against the official registry. Use after collecting passport details.
Input parameters
Passport series and number in a single string, e.g. '4509 235857'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_PHONETool 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
List of phone numbers to standardize and validate. Provide numbers in any format, including international formats.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_RECORDTool 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
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'\].
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_CLEAN_VEHICLEStandardize 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
Vehicle string to standardize, typically a car make and model (e.g., 'ford focus', 'land rover range rover', 'audi a6 2018').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_ADDRESSRetrieve 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
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_BANKTool 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
Tax Registration Reason Code (KPP), used together with INN for specific branch queries
Bank identifier: BIC, SWIFT, INN, or registration number
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_CAR_BRANDFind 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
Car brand identifier (ID) to search for. Use uppercase brand names like 'FORD', 'BMW', 'TOYOTA', 'MERCEDES'. The search is case-insensitive.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_COMPANY_BY_EMAILFind companies by corporate email address domain. Extracts company registration details including INN, OGRN, name, location, and business activity from the email domain.
Input parameters
Maximum number of results to return (1-300). Defaults to 10 if not specified.
Corporate email address to search for company information. The service extracts the domain and finds associated companies.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_COUNTRYTool to find country details by ISO or numeric code. Use when you have a valid country code and need full metadata.
Input parameters
Country code in ISO 3166-1 alpha-2, alpha-3, or numeric format
Response language: 'ru' (default) or 'en'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_COURT_BY_IDFind 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
Court code to search for (e.g., '52MS0022'). Searches by the 'code' field.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_CURRENCYTool to find currency details by ISO 4217 code. Use when you have a currency code and need its full metadata.
Input parameters
Currency code (numeric ISO 4217 or alphabetic ISO 4217, e.g., '643' or 'RUB')
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_DELIVERYRetrieves 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
KLADR code (13-digit, e.g., '7700000000000' for Moscow) or FIAS ID (UUID, e.g., '0c5b2444-70a0-4932-980c-b4dc0d3f02b5') of the city
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_FIAS_BY_IDFind 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
Maximum number of results to return (1-300). Default is 10 if omitted.
FIAS ID (GUID format) to search for. Example: '9120b43f-2fae-4838-a144-85e43c2bfb29'
Boundary configuration for limiting search results.
Boundary configuration for limiting search results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_FMS_UNITLook 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
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_FNS_UNITFind 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
Tax inspection code (e.g., '5257') or INN (taxpayer identification number) to search. Maximum 300 characters.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_FTS_UNITFind 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
Maximum number of results to return. Defaults to 1 if not specified.
8-digit FTS unit code (e.g., '10000000' for Federal Customs Service headquarters, '10100000' for Central Customs Administration)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_MEDICAL_POSITION_BY_IDTool to find medical position by ID code. Use when you have a medical position ID and need its full name and details.
Input parameters
Medical position ID code to search for. The lookup operates exclusively on the id field of medical position records.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_MKTULook 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
Maximum number of results to return (1-20). Defaults to 1 if not specified
MKTU item number/code to search for. Use the full numeric code (e.g., '250173' for felted boots in class 25)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_OKPD2_BY_IDLook 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
OKPD2 code to look up (e.g., '95.23.10.133' for funeral services). Must be a valid OKPD2 code.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_OKPDTR_POSITIONFind 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
OKPDTR position code to look up (e.g., '201294' for assembler). Must be a valid OKPDTR code.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_OKPDTR_PROFESSIONTool 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
OKPDTR profession code to search for (e.g., '100845'). Maximum length: 300 characters.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_OKTMO_BY_IDFind 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
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_OKVED2Look 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
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_PARTYFind 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
KPP (Tax Registration Reason Code, 9 digits) to filter by specific branch. Only useful when searching for branches of a company.
Filter by entity type: 'LEGAL' for companies/organizations, 'INDIVIDUAL' for sole proprietors
Maximum number of results to return (1-300). Default is 10.
INN (10 digits for legal entities, 12 for individuals) or OGRN (13 digits for legal entities, 15 for individuals) to search
Filter by branch type: 'MAIN' for head office only, 'BRANCH' for branches only. Omit to get both.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_PARTY_BYTool 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
UNP (Belarus taxpayer ID) or other identifier to lookup.
Optional list of filters to narrow results. Each filter may include `status` or `type`.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_PARTY_KZLook 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
12-digit BIN (Business Identification Number) of the Kazakhstan company to look up. Example: '140440031745'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_POSTAL_OFFICEFind 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
Postal code (index number) to search for. Must be a valid Russian postal code (6 digits).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_FIND_POSTAL_UNIT_BY_IDFind 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
Postal code to search for (6-digit Russian postal code)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_GEOLOCATE_ADDRESSTool to find nearest addresses by geographic coordinates. Use when you need address suggestions around a specific location.
Input parameters
Latitude of the point in decimal degrees
Longitude of the point in decimal degrees
Number of results to return (max: 20, default: 5)
Search radius in meters (default: 100)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_GEOLOCATE_POSTAL_UNITTool to find nearest postal units by geographic coordinates. Use when you need to locate post offices near a specific location.
Input parameters
Latitude of the point in decimal degrees
Longitude of the point in decimal degrees
Number of results to return (max: 20, default: 5)
Search radius in meters (default: 1000)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_GET_PROFILE_BALANCETool to retrieve current DaData account balance. Use before making API calls that consume funds.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_GET_PROFILE_STATISTICSTool 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
Date for statistics in YYYY-MM-DD format. If not provided, returns today's statistics.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_GET_REFERENCE_VERSIONSTool 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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_IP_LOCATE_ADDRESSGeolocate 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
IPv4 or IPv6 address to geolocate. Only works for Russian IP addresses; returns null for non-Russian IPs.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_ADDRESSTool to autocomplete and suggest addresses. Use when user types partial address fragments to retrieve possible address completions.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Text fragment to autocomplete addresses
Restrict suggestions to certain address levels (e.g., \['city','street'\])
Latitude for geo-based ranking of suggestions
Longitude for geo-based ranking of suggestions
Response language: 'ru' or 'en'
Upper boundary of address granularity
Lower boundary of address granularity
Radius around geo coordinates in meters to narrow search
Whether to restrict results to the specified bounds only
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_BANKTool 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
Number of suggestions to return (1–20)
Search text: partial name, BIC, INN, SWIFT, or registration number
Optional filters to refine bank suggestions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_CAR_BRANDTool to suggest car brands. Use when you need to autocomplete or correct partial car brand names in Russian or English.
Input parameters
Maximum number of suggestions to return. Defaults to 10
Text fragment to autocomplete car brands
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_COUNTRYTool to suggest countries based on user input. Use when you need country autocompletion or search.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Search string for country suggestions (country name, ISO code, or abbreviation)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_COURTTool 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
Number of suggestions to return (1–20). Defaults to 10 if omitted
Text fragment to search courts by name or address
Additional search filters (e.g., {'region_code': '77', 'court_type': 'arbitration'})
Filter results by FIAS-based location identifiers
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_CURRENCYTool to suggest currencies by ISO 4217 code or name. Use when you need currency autocompletion.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Currency code or name to search for
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_EMAILTool to autocomplete and suggest email addresses. Use when user provides an email prefix and you need possible completions.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Email prefix or partial email to autocomplete
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_FIASTool 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
Number of suggestions to return. Defaults to 10 if omitted
Address query string to search in FIAS/GAR database
Granularity boundary for FIAS address suggestion.
List of locations to filter suggestions by specific address components
Granularity boundary for FIAS address suggestion.
Whether to restrict results to the specified bounds only. Defaults to false
List of locations to boost in search results using KLADR ID
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_FMS_UNITTool to autocomplete and suggest passport issuing authorities. Use when you need to lookup Russian FMS units by partial code or name.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Text fragment to search for a passport issuing authority by code or name
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_FNS_UNITTool 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
Number of suggestions to return (1-20); defaults to 10 if omitted
Text fragment to search for a tax inspection unit by name or code
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_FTS_UNITTool to autocomplete and suggest Russian customs (FTS) units. Use when user provides partial name or code to retrieve matching offices.
Input parameters
Maximum number of suggestions to return (1-20). Defaults to 10 if omitted.
Search query - partial name or code of a Russian customs (FTS) unit. Supports Cyrillic text or numeric codes.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_MEDICAL_POSITIONTool to autocomplete and suggest medical positions and specialties. Use when you need to find medical worker positions by partial name or code.
Input parameters
Number of suggestions to return (1-20). Defaults to 10 if omitted
Search query for medical position name or code (e.g., 'врач', 'терапевт', 'медсестра')
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_METROTool to suggest metro stations. Use when you need to autocomplete metro station names in Russian cities.
Input parameters
Number of suggestions to return (minimum 1)
Text fragment to autocomplete metro station names
Optional list of filters to narrow down suggestions
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_MKTUAutocomplete 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
Number of suggestions to return (1–20). Defaults to 10 if omitted
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
Additional filters to narrow suggestions. E.g., {'code': '35'}
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_NAMETool to autocomplete and suggest full names (FIO). Use when user types partial name fragments to retrieve possible full name completions.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Specific name parts to search: \['SURNAME','NAME','PATRONYMIC'\]
Text fragment to autocomplete full names (FIO)
Filter suggestions by gender: 'MALE' or 'FEMALE'
Response language: 'ru' or 'en'. Defaults to 'ru'
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_OKPD2Tool to autocomplete and suggest Russian product classification codes (OKPD2). Use when you need to find or validate OKPD2 codes by partial queries.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Search query for OKPD2 code or name
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_OKPDTR_POSITIONTool 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
Number of suggestions to return (1–20). Defaults to 10 if omitted
Search query for OKPDTR job position code or name (max 300 characters)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_OKPDTR_PROFESSIONTool to autocomplete and suggest professions from OKPDTR classifier. Use when you need to find profession codes and names by partial queries.
Input parameters
Number of suggestions to return (1–20). Defaults to 10 if omitted
Search query for profession name from OKPDTR classifier
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_OKTMOSuggest 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
Number of suggestions to return (1-20). Defaults to 10 if omitted.
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
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_OKVED2Tool 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
Number of suggestions to return (1–20). Defaults to 10 if omitted.
Fragment of OKVED2 code or activity name to search for
Upper boundary of OKVED2 selection
Lower boundary of OKVED2 selection
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_PARTYTool 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
Filter by entity type: "LEGAL" (juridical) or "INDIVIDUAL" (entrepreneur).
Number of suggestions to return (1–20). Defaults to 10 if omitted.
Search query: company name, INN, OGRN, address, etc.
Filter by entity status.
Additional filters as defined in DaData docs (e.g., legalForm, region).
Which branches to include: "main" only, or "all" (default).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_PARTY_BYTool 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
Number of suggestions to return (1–20). Defaults to 10 if omitted.
Search query: company name, UNP, address, or other identifying information for Belarus companies.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_PARTY_KZTool 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
Number of suggestions to return (1–20). Defaults to 10 if omitted.
Search query: company name, BIN (Business Identification Number), or address. Can be in Russian or Kazakh.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_POSTAL_OFFICESuggests 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
Number of suggestions to return (1–20). Defaults to 10 if omitted
Search string for finding postal offices: address fragment or postal code
Optional filters to refine postal office suggestions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
DADATA_RU_SUGGEST_POSTAL_UNITSuggests 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
Number of suggestions to return (1–20). Defaults to 10 if omitted
Search string: postal unit name, address fragment, or postal code
Optional filters to refine postal unit suggestions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 53 agents privately built on Nagent that already use DaData.ru.
Build on Nagent
Connect DaData.ru to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find DaData.ru, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, DaData.ru is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once DaData.ru is connected, you configure its 63 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop DaData.ru steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a DaData.ru event fires, the agent kicks off automatically.
Every DaData.ru action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While DaData.ru ships with 63 pre-built developer tools actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching DaData.ru together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build DaData.ru-based workflows tailored to your business.