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/futuur-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/futuur-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/futuur-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/futuur-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/futuur-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": "Outcome prices are 0-1 implied probabilities; 0.46 is a 46% chance. real_money_price is the USDC market, play_money_price the OOM market. Get a market id from /v1/markets, then call /v1/market?id=.",
        "source": "Futuur (api.futuur.com/api/v1, live)",
        "service": "futuur-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/market": "A single market with all outcomes, prices and implied probabilities (id=231754).",
            "GET /v1/markets": "List markets with outcomes and prices (filters: category, search, limit=25).",
            "GET /v1/categories": "Topic categories (Bitcoin, Elections, Sports…)."
        },
        "categories": 20,
        "description": "Live prices from Futuur, a global prediction market where users trade on real-world events across crypto, politics, sports, science and economics in real money (USDC) and play money. Each market holds outcomes whose price (0-1) is the market-implied probability. The markets endpoint lists markets, filterable by category and search; the market endpoint returns a single market with every outcome's real-money and play-money price and implied probability, plus category, status and close date; the categories endpoint lists topics. Live, no key, nothing stored. The global prediction-market / event-probability cut — distinct from the US-politics-only and crypto-only prediction markets and the price and FX APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:38.652Z",
        "request_id": "ffced400-6f13-482b-840b-b51a1edd7356"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}