Aller au contenu
GET /v1/meta

Service metadata and endpoint catalog

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/magiceden-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/magiceden-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/magiceden-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/magiceden-api/v1/meta");
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/magiceden-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "source": "Magic Eden mainnet API (api-mainnet.magiceden.dev, live)",
        "service": "magiceden-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/stats": "Live market stats: floor, listed count, 24h avg, all-time volume (symbol=okay_bears).",
            "GET /v1/listings": "The live order book of tokens on sale (symbol=okay_bears, offset, limit).",
            "GET /v1/activities": "The live trade feed: buys, lists, bids, delists (symbol=okay_bears, offset, limit)."
        },
        "description": "Live Solana NFT-marketplace data from Magic Eden, the largest NFT marketplace on Solana — a marketplace order-book and trade-feed layer, not a floor-price aggregator. The stats endpoint returns a collection's live market stats (floor price in SOL, listed count, 24h average sale price, all-time volume); the listings endpoint returns the live order book (tokens on sale with SOL ask price, seller, token mint and rarity rank); the activities endpoint returns the live trade feed (buys, listings, bids, delistings with price, buyer, seller, on-chain signature and time). Live, no key, nothing stored. Distinct from generic NFT floor/market-cap aggregators and from on-chain explorers — this is Magic Eden's own Solana marketplace listings and trade activity.",
        "upstream_status": "ok",
        "sample_floor_sol": 1.6443
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:48.461Z",
        "request_id": "01528d6f-87d8-4b35-a292-faa54677bab0"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}