Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/jupiter-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Amounts are raw base units (use the token's decimals); SOL mint = So11111111111111111111111111111111111111112, USDC = EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.",
        "source": "Jupiter API (lite-api.jup.ag, live)",
        "service": "jupiter-api",
        "sol_usd": 62.8327,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/price": "USD price, liquidity and 24h change for token mints (ids=mint1,mint2).",
            "GET /v1/quote": "Best swap route between two mints (input=, output=, amount=raw, slippage_bps=50).",
            "GET /v1/token": "Search Solana tokens by symbol, name or mint (query=USDC)."
        },
        "description": "Live data from Jupiter, the leading DEX aggregator on Solana, via its public API. The price endpoint returns the live USD price, on-chain liquidity and 24h change for any Solana token mint (one or many); the quote endpoint returns the best swap route Jupiter finds between two mints for a given input amount — output amount, price impact and routing hops; the token endpoint searches Solana tokens by symbol, name or mint and returns the top match's price, liquidity, market cap, decimals and holder count. Live, no key, nothing stored. Distinct from EVM on-chain explorers, other DEX/DeFi feeds and generic price APIs — this is Jupiter's own Solana swap-routing, token-price and token-search layer.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:09.104Z",
        "request_id": "02f42a8f-1449-446c-b32a-950e7509fe32"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}