Skip to content
GET /v1/cork-params

Cork governance parameters

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

Example response

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

{
    "data": {
        "chain": "sommelier-3",
        "vote_threshold": 0.67,
        "max_corks_per_validator": 1000
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:10.223Z",
        "request_id": "da655691-84de-422d-878b-44f639b7d6e9"
    },
    "status": "ok",
    "message": "Cork params retrieved successfully",
    "success": true
}