GET /crypto/search
Поиск среди топ-250 криптовалют по названию или тикеру. Возвращает совпадающие монеты с ID, символом, названием и текущей ценой. Полезно для создания полей автодополнения в крипто-приложениях, поиска и добавления монет в списки наблюдения или разрешения неоднозначных тикеров.
q
обязательный
Search query
| Название | Обязательный | По умолчанию | Описание |
|---|---|---|---|
q |
Да | - | Search query |
curl "https://nordapi.ee/api/v1/crypto/search?q=ethereum"
curl "https://nordapi.ee/api/v1/crypto/search?q=ethereum"
curl "https://nordapi.ee/api/v1/crypto/search?q=SOL"
curl "https://nordapi.ee/api/v1/crypto/search?q=doge"
{
"count": 4,
"data": [
{
"id": "ethereum",
"market_cap_usd": 227984851998.0,
"name": "Ethereum",
"price_usd": 1889.28,
"symbol": "ETH"
},
{
"id": "ethereum-classic",
"market_cap_usd": 998803207.0,
"name": "Ethereum Classic",
"price_usd": 6.33,
"symbol": "ETC"
},
{
"id": "ethereum-name-service",
"market_cap_usd": 173576950.0,
"name": "Ethereum Name Service",
"price_usd": 4.13,
"symbol": "ENS"
},
{
"id": "midas-re7-ethereum",
"market_cap_usd": 8437806.0,
"name": "Midas Re7 Ethereum",
"price_usd": 1764.0,
"symbol": "MRE7ETH"
}
],
"success": true
}
{"success":true,"data":[{"id":"ethereum","symbol":"ETH","name":"Ethereum","price_usd":2147.50}]}