Naar de inhoud
GET /v1/user

A forecaster profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/manifold-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "bio": "Understanding and optimizing the world. Software engineer, EA, and forecasting enthusiast. If I win mana from you, thank you for matching my donations towards reducing AI x-risk.",
        "url": "https://manifold.markets/jack",
        "name": "Jack",
        "source": "Manifold",
        "username": "jack",
        "balance_mana": 1140612.6,
        "created_time": "2022-01-02T05:50:45.330Z",
        "markets_created": null,
        "total_deposits_mana": 1176081.53,
        "profit_all_time_mana": null
    },
    "meta": {
        "timestamp": "2026-06-10T14:02:14.686Z",
        "request_id": "0f9e37f8-e79b-4366-b430-308015e72892"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}