← Fjármál og gjaldmiðlar

Dulritunarleit

GET /crypto/search

Search í the top 250 dulritunargjaldmiðla by name or ticker symbol. Skilar samsvarandi coins with their ID, symbol, name, and current price. Gagnlegt til að byggja autocomplete search fields in crypto forrit, letting users finndu and add coins to watchlists, or resolving ambiguous ticker symbols to the correct coin.

Breytur

q nauðsynlegt

Search query

Dæmi um fyrirspurnir

Grunnnotkun
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"

Lifandi svar

{
  "count": 3,
  "data": [
    {
      "id": "ethereum",
      "market_cap_usd": 249271525270.0,
      "name": "Ethereum",
      "price_usd": 2071.46,
      "symbol": "ETH"
    },
    {
      "id": "ethereum-classic",
      "market_cap_usd": 1344725378.0,
      "name": "Ethereum Classic",
      "price_usd": 8.61,
      "symbol": "ETC"
    },
    {
      "id": "ethereum-name-service",
      "market_cap_usd": 212239702.0,
      "name": "Ethereum Name Service",
      "price_usd": 5.54,
      "symbol": "ENS"
    }
  ],
  "success": true
}

Dæmi um svar

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