/v1/meta
Service metadata and endpoint catalog
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}