Skip to content
GET /v1/keys

A bigmap's live key-value entries

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/tezosbigmaps-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "ptr": "511",
        "keys": [
            {
                "id": 69977850,
                "key": {
                    "nat": "881107",
                    "address": "KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w"
                },
                "value": "1",
                "active": true,
                "updates": 1,
                "first_level": 13639260
            },
            {
                "id": 69977833,
                "key": {
                    "nat": "881107",
                    "address": "tz1hghbrDGx33HendcHRAdKUDtdFoFP24uaE"
                },
                "value": "0",
                "active": true,
                "updates": 2,
                "first_level": 13639242
            },
            {
                "id": 69977826,
                "key": {
                    "nat": "881106",
                    "address": "KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w"
                },
                "value": "1",
                "active": true,
                "updates": 1,
                "first_level": 13639236
            },
            {
                "id": 69977820,
                "key": {
                    "nat": "881106",
                    "address": "tz1gNa1o9LjxjR6T4iqyAUNTNz3QRzfNdr2E"
                },
                "value": "0",
                "active": true,
                "updates": 2,
                "first_level": 13639227
            },
            {
                "id": 69977789,
                "key": {
                    "nat": "861355",
                    "address": "tz1g9jiDLMcadVEfMxMhToUWNB6hvMcMsFKY"
                },
                "value": "1",
                "active": true,
                "updates": 1,
                "first_level": 13639168
            },
            {
                "id": 69977743,
                "key": {
                    "nat": "627160",
                    "address": "tz1LJmf4GUTrNsZVWXomSfqyWEWdNPo75Wz3"
                },
                "value": "1",
                "active": true,
                "updates": 1,
                "first_level": 13639036
            },
            {
                "id": 69977736,
                "key": {
                    "nat": "706328",
                    "address": "tz1LJmf4GUTrNsZVWXomSfqyWEWdNPo75Wz3"
                },
                "value": "1",
                "active": true,
                "updates": 1,
                "first_level": 13639019
            },
            {
                "id": 69977729,
                "key": {
                    "nat": "571904",
                    "address": "tz1LJmf4GUTrNsZVWXomSfqyWEWdNPo75Wz3"
                },
                "value": "1",
                "active": true,
                "updates": 1,
                "first_level": 13639009
            },
            {
                "id": 69977711,
                "key": {
                    "nat": "879090",
                    "address": "tz1QRXxx7R8fAnCESAkDWzShRYkmPJnUztYU"
              
…