Skip to content
GET /v1/transfers

A token's recent transfers

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "note": "The recent transfers of one Tezos token, newest first — each with sender, receiver and decimal-adjusted amount. A mint shows no sender, a burn no receiver. Pass token_id (the TzKT numeric id), or omit to use the most-held token.",
        "count": 25,
        "source": "TzKT",
        "token_id": "543829011726337",
        "transfers": [
            {
                "to": "tz1VEo2ATuJPTscoitEYtY3jLKstPSquiC2a",
                "from": "tz1YLc1WVb6cBkTf7ytvWJdzvJx7gDi5Bn8i",
                "level": 13467830,
                "amount": 1,
                "timestamp": "2026-06-02T12:35:28Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1YLc1WVb6cBkTf7ytvWJdzvJx7gDi5Bn8i",
                "from": "tz1VEo2ATuJPTscoitEYtY3jLKstPSquiC2a",
                "level": 13467808,
                "amount": 1,
                "timestamp": "2026-06-02T12:33:07Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1fvJbmbviADybeo9SE19HJPiUhCe35FHyV",
                "from": "tz1RyFgKssobV5WEj285Ts5svhXhpKCRzXrK",
                "level": 13429248,
                "amount": 3,
                "timestamp": "2026-05-30T18:59:31Z",
                "amount_raw": "3"
            },
            {
                "to": "tz2EHrXhCS1Ak4EYUKEDGR46PD4ekJ1HnZ9G",
                "from": "tz2XBntayJQK5sDaSWsYgtGC2YUmZev1R73F",
                "level": 13421169,
                "amount": 1,
                "timestamp": "2026-05-30T05:27:16Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1Mkf5x4X4m4SpRe61H7k24RUQvAL2GxVAY",
                "from": "tz1goj15voiVHfmG6wj3dqUNrGi1vutrZGL8",
                "level": 13103979,
                "amount": 1,
                "timestamp": "2026-05-07T21:40:43Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1ifMGuF5gS3UFTyGwLr4idAKSJMkte11Pu",
                "from": "tz28XeSM63hzkiTGxJUD1udHgH4V5rE8Q4Jb",
                "level": 12345873,
                "amount": 1,
                "timestamp": "2026-03-15T10:15:55Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1UrJnuJcBSyT5CLcFLbCbgiCa1HAjMAYUP",
                "from": "tz1Se8874BN49EPhYNHzA9kEopTJWJRmtHxN",
                "level": 12068159,
                "amount": 1,
                "timestamp": "2026-02-23T21:58:22Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1LXe4eKtZ13Joq7miGadfAkj6wZL9eA6CE",
                "from": "tz2NWn31T487GryWL3jDP5abDRTX94AsGFdx",
                "level": 11856124,
                "amount": 1,
                "timestamp": "2026-02-08T21:07:49Z",
                "amount_raw": "1"
            },
            {
                "to": "tz1ThnsFPevPVzJrp3R5Q4T5CLaNs6CqhopR",
                "from": "tz1eMLFZ4mn1pcBYZv3wVHF7NbW9QidSVaH4",
                "level": 11564663,
    
…