Naar de inhoud
GET /v1/nfts

Trending NFT collections

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cryptotrending-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cryptotrending-api/v1/nfts" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptotrending-api/v1/nfts", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptotrending-api/v1/nfts");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/cryptotrending-api/v1/nfts",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "nfts": [
            {
                "id": "normies",
                "name": "Normies",
                "rank": 1,
                "thumb": "https://coin-images.coingecko.com/nft_contracts/images/102126225/standard/normies.png?1771988351",
                "symbol": "NORMIES",
                "native_currency": "ETH",
                "floor_price_native": 0.5989,
                "volume_24h_display": "25.75 ETH",
                "floor_price_24h_pct": 18.4886,
                "floor_price_display": "0.60 ETH",
                "avg_sale_price_display": "0.59 ETH"
            },
            {
                "id": "ordinal-maxi-biz-omb",
                "name": "Ordinal Maxi Biz (OMB)",
                "rank": 2,
                "thumb": "https://coin-images.coingecko.com/nft_contracts/images/3256/standard/ordinal-maxi-biz-omb.jpg?1707289925",
                "symbol": "OMB",
                "native_currency": "BTC",
                "floor_price_native": 0.0175,
                "volume_24h_display": "0.34 BTC",
                "floor_price_24h_pct": 3.1118,
                "floor_price_display": "0.018 BTC",
                "avg_sale_price_display": "0.11 BTC"
            },
            {
                "id": "mutant-ape-yacht-club",
                "name": "Mutant Ape Yacht Club",
                "rank": 3,
                "thumb": "https://coin-images.coingecko.com/nft_contracts/images/104/standard/mayc.png?1707287200",
                "symbol": "MAYC",
                "native_currency": "ETH",
                "floor_price_native": 1.3547,
                "volume_24h_display": "34.95 ETH",
                "floor_price_24h_pct": 2.5628,
                "floor_price_display": "1.35 ETH",
                "avg_sale_price_display": "1.59 ETH"
            },
            {
                "id": "lilpudgys",
                "name": "Lil Pudgys",
                "rank": 4,
                "thumb": "https://coin-images.coingecko.com/nft_contracts/images/229/standard/lil-pudgys.png?1734262007",
                "symbol": "LilPudgys",
                "native_currency": "ETH",
                "floor_price_native": 0.465,
                "volume_24h_display": "15.70 ETH",
                "floor_price_24h_pct": 2.1219,
                "floor_price_display": "0.47 ETH",
                "avg_sale_price_display": "0.48 ETH"
            },
            {
                "id": "pudgy-penguins",
                "name": "Pudgy Penguins",
                "rank": 5,
                "thumb": "https://coin-images.coingecko.com/nft_contracts/images/38/standard/pudgy.jpg?1730778323",
                "symbol": "PPG",
                "native_currency": "ETH",
                "floor_price_native": 4.42996599999999,
                "volume_24h_display": "112.41 ETH",
                "floor_price_24h_pct": 2.0929,
                "floor_price_display": "4.43 ETH",
                "avg_sale_price_display": "4.50 ETH"
            },
            {
        
…