/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}