Μετάβαση στο περιεχόμενο
GET /v1/positions

Top holders of a market

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/manifold-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 27,
        "source": "Manifold",
        "holders": [
            {
                "name": null,
                "username": null,
                "profit_mana": 2594.54,
                "total_shares": 48235.49,
                "invested_mana": 25050,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 31.52,
                "total_shares": 2532.69,
                "invested_mana": 1420,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 31.5,
                "total_shares": 1799.81,
                "invested_mana": 1000,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 27.13,
                "total_shares": 284.64,
                "invested_mana": 136,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 26.9,
                "total_shares": 284.23,
                "invested_mana": 136,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 25.88,
                "total_shares": 4745.73,
                "invested_mana": 2000,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 7.86,
                "total_shares": 100.97,
                "invested_mana": 50,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 7.13,
                "total_shares": 225.56,
                "invested_mana": 122,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 1.25,
                "total_shares": 120.05,
                "invested_mana": 50,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": 1.09,
                "total_shares": 10.63,
                "invested_mana": 5,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": -891.69,
                "total_shares": 10795.23,
                "invested_mana": 5500,
                "has_yes_shares": true
            },
            {
                "name": null,
                "username": null,
                "profit_mana": -528.12,
                "total_shares": 0,
                "invested
…