Skip to content

Retrieving Dictionary Values

Retrieves the values of a dictionary by its name. Supports pagination and search.

URL

Method: GET

  • Production: https://registry.wallet.kvell.group/reg2/dictionary/{name}

Request parameters

Name Type Required Description
name string Yes Dictionary name (banks, regions, currencies, countries, okved)

Query parameters

Name Type Required Description
search string No Search string for dictionary values
limit integer No Number of records per page (default 20)
offset integer No Pagination offset

Request example

GET https://registry.wallet.kvell.group/reg2/dictionary/{name}?search=%D1%81%D0%B1%D0%B5%D1%80%D0%B1%D0%B0%D0%BD%D0%BA&limit=20&offset=0

Request headers

Name Type Required Description
X-Api-Key string Yes Unique identifier (UUID)

Response

Response example

{
  "success": true,
  "data": {
    "name": "banks",
    "total": 342,
    "limit": 20,
    "offset": 0,
    "items": [
      {
        "bik": "044525225",
        "name": "ПАО Сбербанк",
        "corrAccount": "30101810400000000225",
        "city": "Москва",
        "address": "117997, г. Москва, ул. Вавилова, д. 19"
      },
      {
        "bik": "044525593",
        "name": "АО Альфа-Банк",
        "corrAccount": "30101810200000000593",
        "city": "Москва",
        "address": "107078, г. Москва, ул. Каланчевская, д. 27"
      }
    ]
  }
}