Skip to content
GET /v1/auctions

Reward-token auctions

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/sommelier-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "chain": "sommelier-3",
        "count": 4,
        "status": "ended",
        "auctions": [
            {
                "id": 2,
                "end_block": 13171910,
                "start_block": 13125000,
                "sale_token_denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e",
                "current_unit_price_somm": 2.8570000000000003e-21,
                "initial_unit_price_somm": 1.2634079e-17,
                "starting_tokens_for_sale": 2.0067438481113948e+21,
                "remaining_tokens_for_sale": null,
                "price_decrease_block_interval": 10
            },
            {
                "id": 3,
                "end_block": 13172490,
                "start_block": 13125000,
                "sale_token_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
                "current_unit_price_somm": 1.85076158271682e-10,
                "initial_unit_price_somm": 1.263407916514005e-5,
                "starting_tokens_for_sale": 14301280023,
                "remaining_tokens_for_sale": null,
                "price_decrease_block_interval": 10
            },
            {
                "id": 9,
                "end_block": 15122494,
                "start_block": 15120000,
                "sale_token_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
                "current_unit_price_somm": 0.010022556986615463,
                "initial_unit_price_somm": 0.010209129166666667,
                "starting_tokens_for_sale": 7932249,
                "remaining_tokens_for_sale": null,
                "price_decrease_block_interval": 10
            },
            {
                "id": 13,
                "end_block": 16842509,
                "start_block": 16815000,
                "sale_token_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
                "current_unit_price_somm": 2.1105167595e-14,
                "initial_unit_price_somm": 4.09e-13,
                "starting_tokens_for_sale": 1.35e+19,
                "remaining_tokens_for_sale": null,
                "price_decrease_block_interval": 10
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:09.951Z",
        "request_id": "c39ef648-3be0-4bff-85d2-74d9e73c046a"
    },
    "status": "ok",
    "message": "Auctions retrieved successfully",
    "success": true
}