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

Perpetual and futures markets with live mark price

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

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

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

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

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

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

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

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

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

{
    "data": {
        "type": "derivative",
        "count": 100,
        "total": 161,
        "source": "Injective",
        "markets": [
            {
                "status": null,
                "ticker": "1INCH/USDC PERP",
                "market_id": "0x97e9255c2ed063e9c3e07ecef08783f8a7ada3c4ece72cf7fb14e5d18affb444",
                "mid_price": null,
                "mark_price": 0.07084516,
                "oracle_type": "Pyth",
                "quote_denom": "erc20:0xa00C59fF5a080D2b954d0c75e46E22a0c371235a",
                "best_buy_price": null,
                "maker_fee_rate": 0.0001,
                "taker_fee_rate": 0.0001,
                "best_sell_price": null,
                "initial_margin_ratio": 18.1818,
                "hourly_funding_rate_cap": null,
                "maintenance_margin_ratio": 10
            },
            {
                "status": null,
                "ticker": "A/USDC PERP",
                "market_id": "0xbbeeab469a0dd70c6ba3df283f084726a9b9896bdbdffce1432e82f881d756a7",
                "mid_price": null,
                "mark_price": 0.06456559,
                "oracle_type": "Pyth",
                "quote_denom": "erc20:0xa00C59fF5a080D2b954d0c75e46E22a0c371235a",
                "best_buy_price": null,
                "maker_fee_rate": 0.0001,
                "taker_fee_rate": 0.0001,
                "best_sell_price": null,
                "initial_margin_ratio": 18.1818,
                "hourly_funding_rate_cap": null,
                "maintenance_margin_ratio": 10
            },
            {
                "status": null,
                "ticker": "AAPL/USDC PERP",
                "market_id": "0xa3d0ef8d845ada306a53baabd04edab9c5525ba9e011648a09aa064db5ca3442",
                "mid_price": 290.24,
                "mark_price": 289.753562,
                "oracle_type": "Provider",
                "quote_denom": "erc20:0xa00C59fF5a080D2b954d0c75e46E22a0c371235a",
                "best_buy_price": 289.98,
                "maker_fee_rate": 0.0001,
                "taker_fee_rate": 0.0001,
                "best_sell_price": 290.5,
                "initial_margin_ratio": 3.3333,
                "hourly_funding_rate_cap": null,
                "maintenance_margin_ratio": 2
            },
            {
                "status": null,
                "ticker": "AAVE/USDC PERP",
                "market_id": "0x324dd1a31695cb8cd7243f9e04286492653c9c146d7576379fb2848ab7cab76a",
                "mid_price": 62.375,
                "mark_price": 62.35487934,
                "oracle_type": "ChainlinkDataStreams",
                "quote_denom": "erc20:0xa00C59fF5a080D2b954d0c75e46E22a0c371235a",
                "best_buy_price": 62.21,
                "maker_fee_rate": 0.0001,
                "taker_fee_rate": 0.0001,
                "best_sell_price": 62.54,
                "initial_margin_ratio": 8.3333,
                "hourly_funding_rate_cap": null,
                "maintenance_margin_ratio":
…