Skip to content
GET /v1/entrypoints

A contract's named entrypoints

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "note": "The named entrypoints a Tezos contract exposes — its callable interface. Each entrypoint is a method (e.g. transfer, mint, burn) with its parameter schema. This is how a wallet or dApp knows what calls a contract accepts. Omit address to use the highest-balance contract.",
        "count": 2,
        "source": "TzKT",
        "address": "KT1CeFqjJRJPNVvhvznQrWfHad2jCiDZ6Lyj",
        "entrypoints": [
            {
                "name": "burn",
                "unused": false,
                "parameters": {
                    "schema:object": {
                        "ticket:ticket": {
                            "amount:nat": "nat",
                            "content:object": {
                                "nat:nat": "nat",
                                "bytes:?bytes": "bytes"
                            },
                            "address:address": "address"
                        },
                        "address:address": "address"
                    }
                }
            },
            {
                "name": "mint",
                "unused": false,
                "parameters": {
                    "schema:address": "address"
                }
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:53.085Z",
        "request_id": "fd666632-a235-43eb-ba2b-7c0be34ac083"
    },
    "status": "ok",
    "message": "Entrypoints retrieved successfully",
    "success": true
}