Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/jupiter-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}