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.
q
erforderlich
Search query
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
q |
Ja | - | 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": 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
}
{"success":true,"data":[{"id":"ethereum","symbol":"ETH","name":"Ethereum","price_usd":2147.50}]}