Naar de inhoud
GET /v1/transactions

A wallet recent signatures

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/solana-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 15,
        "address": "GThUX1Atko4tqhN2NaiTazWSeFWMuiUvfFnyJyUghFMJ",
        "transactions": [
            {
                "memo": null,
                "slot": 425319204,
                "status": "success",
                "explorer": "https://solscan.io/tx/3wdHTvRsrU4g5qaS4Nhx9RkDG9RtxQwCu8SJK5g8pUrLAz5WUn8ipNcgynEo579omGrsfSytryd4pVZtZKF3RRaG",
                "signature": "3wdHTvRsrU4g5qaS4Nhx9RkDG9RtxQwCu8SJK5g8pUrLAz5WUn8ipNcgynEo579omGrsfSytryd4pVZtZKF3RRaG",
                "block_time": 1781004756
            },
            {
                "memo": null,
                "slot": 425315334,
                "status": "success",
                "explorer": "https://solscan.io/tx/2LJsL2ezK1JqpjX4DD7hyFWFtH4mYqcjhiAsLwzSxMzLKoizRMGNUU2H9nMm55jEScnWi5baH2FYcBETV7wcre8Z",
                "signature": "2LJsL2ezK1JqpjX4DD7hyFWFtH4mYqcjhiAsLwzSxMzLKoizRMGNUU2H9nMm55jEScnWi5baH2FYcBETV7wcre8Z",
                "block_time": 1781003215
            },
            {
                "memo": null,
                "slot": 425314983,
                "status": "success",
                "explorer": "https://solscan.io/tx/3bUorqRibttuFfsJhviNPFxAC3dJA2jgzvg1bmsExw8tRokZq5FG24WgW12xT7VeAiF8FwSG5L3NcVUcu8jBgqW5",
                "signature": "3bUorqRibttuFfsJhviNPFxAC3dJA2jgzvg1bmsExw8tRokZq5FG24WgW12xT7VeAiF8FwSG5L3NcVUcu8jBgqW5",
                "block_time": 1781003078
            },
            {
                "memo": null,
                "slot": 425304694,
                "status": "success",
                "explorer": "https://solscan.io/tx/26uQ2ncNPRLKMcoy2VTKgZYPpc1NzyzwqUFEyGcGWd25yq8siBimKecsb1usBSHygZoGNgDVB9xLrzNvx6V4xrh5",
                "signature": "26uQ2ncNPRLKMcoy2VTKgZYPpc1NzyzwqUFEyGcGWd25yq8siBimKecsb1usBSHygZoGNgDVB9xLrzNvx6V4xrh5",
                "block_time": 1780998969
            },
            {
                "memo": null,
                "slot": 425296476,
                "status": "success",
                "explorer": "https://solscan.io/tx/ZU9MmugeD44Q4KeBtntNpem2jQx7LXkn1HcMpGunEGq25BNP6LS9aLk8LJ3hJTtjUecRxx8xM4JaSTa6Nwu3Rof",
                "signature": "ZU9MmugeD44Q4KeBtntNpem2jQx7LXkn1HcMpGunEGq25BNP6LS9aLk8LJ3hJTtjUecRxx8xM4JaSTa6Nwu3Rof",
                "block_time": 1780995698
            },
            {
                "memo": null,
                "slot": 425277993,
                "status": "success",
                "explorer": "https://solscan.io/tx/3dRCzY7rxuvdisP7geuND3zAFdfYbHgjuYsKy5J1RiQrbJNT9yZNX6juh6aRHdfMBaV9bpagjnmNHaH6r4c5Rra",
                "signature": "3dRCzY7rxuvdisP7geuND3zAFdfYbHgjuYsKy5J1RiQrbJNT9yZNX6juh6aRHdfMBaV9bpagjnmNHaH6r4c5Rra",
                "block_time": 1780988335
            },
            {
                "memo": null,
                "slot": 425277706,
                "status": "success",
                "explorer": "https://solscan.io/tx/4tC37Auj9i8ugzy9ANsnuSvBaKnHsCKR4BnWRxiL5jDuGKzFjPwL4SQLrvCCJV2x8ezUAKbXDF9t6fRPQnzZhak5",
      
…