← Finance et devises

Recherche de cryptomonnaies

GET /crypto/search

Recherchez parmi le top 250 cryptomonnaies by name ou ticker symbol. Renvoie matching coins avec leur ID, symbol, name, et current price. Utile pour créer des autocomplete rechercher fields in crypto apps, letting users trouver et add coins to watchlists, ou resolving ambiguous ticker symbols to le correct coin.

Paramètres

q requis

Search query

Exemples de requêtes

Utilisation de base
curl "https://nordapi.ee/api/v1/crypto/search?q=ethereum"
Search for Ethereum
curl "https://nordapi.ee/api/v1/crypto/search?q=ethereum"
Search by ticker symbol
curl "https://nordapi.ee/api/v1/crypto/search?q=SOL"
Search for dog-themed coins
curl "https://nordapi.ee/api/v1/crypto/search?q=doge"

Réponse en direct

{
  "count": 3,
  "data": [
    {
      "id": "ethereum",
      "market_cap_usd": 249557663837.0,
      "name": "Ethereum",
      "price_usd": 2066.43,
      "symbol": "ETH"
    },
    {
      "id": "ethereum-classic",
      "market_cap_usd": 1339982035.0,
      "name": "Ethereum Classic",
      "price_usd": 8.58,
      "symbol": "ETC"
    },
    {
      "id": "ethereum-name-service",
      "market_cap_usd": 212626675.0,
      "name": "Ethereum Name Service",
      "price_usd": 5.54,
      "symbol": "ENS"
    }
  ],
  "success": true
}

Exemple de réponse

{"success":true,"data":[{"id":"ethereum","symbol":"ETH","name":"Ethereum","price_usd":2147.50}]}