/v1/entrypoints
A contract's named entrypoints
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}