← Finanzen & Währung

Krypto-Suche

GET /crypto/search

Durchsuchen Sie the top 250 Kryptowährungen by name oder ticker symbol. Liefert übereinstimmende coins with their ID, symbol, name, und current price. Nützlich für building autocomplete search fields in crypto apps, letting users find und add coins to watchlists, oder resolving ambiguous ticker symbols to the correct coin.

Parameter

q erforderlich

Search query

Beispielanfragen

Grundlegende Verwendung
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"

Live-Antwort

{
  "count": 3,
  "data": [
    {
      "id": "ethereum",
      "market_cap_usd": 248834903221.0,
      "name": "Ethereum",
      "price_usd": 2061.33,
      "symbol": "ETH"
    },
    {
      "id": "ethereum-classic",
      "market_cap_usd": 1338690257.0,
      "name": "Ethereum Classic",
      "price_usd": 8.57,
      "symbol": "ETC"
    },
    {
      "id": "ethereum-name-service",
      "market_cap_usd": 212456840.0,
      "name": "Ethereum Name Service",
      "price_usd": 5.52,
      "symbol": "ENS"
    }
  ],
  "success": true
}

Beispielantwort

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