Skip to content
GET /v1/transactions

Recent transactions

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "count": 10,
        "source": "Stellar Horizon",
        "address": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
        "transactions": [
            {
                "hash": "f42fbd2c23455fff8e763e6952244dc504ed74544737885d1ef854adf3183e5d",
                "memo": null,
                "ledger": 62951212,
                "memo_type": "none",
                "created_at": "2026-06-09T11:26:55Z",
                "successful": true,
                "source_account": "GC5I6YQ4UTGG2LIS62CSVLLVCTPGFARO56ROLUMNTXLNYCW3V3N4B62Y",
                "operation_count": 1,
                "fee_charged_stroops": 100
            },
            {
                "hash": "de7e62a63074fe58b0cb6b2f446a65ac27e3a328b0b9699665f4325d1748a0dd",
                "memo": "1763579285836133015",
                "ledger": 62951007,
                "memo_type": "id",
                "created_at": "2026-06-09T11:07:13Z",
                "successful": true,
                "source_account": "GARJGFVNU3SXBSLDR2OWO47VYAMIGPB7BGNOHIJ2YNXGZ6BOPLYQD3ZB",
                "operation_count": 1,
                "fee_charged_stroops": 100
            },
            {
                "hash": "082912a0f5e65de377c5d2177922effed838bbae26137a4b54aaea940db180e2",
                "memo": "5555",
                "ledger": 62950944,
                "memo_type": "text",
                "created_at": "2026-06-09T11:01:11Z",
                "successful": true,
                "source_account": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
                "operation_count": 1,
                "fee_charged_stroops": 100
            },
            {
                "hash": "4d65b7e110c5079523a35f85641abd7fe728154dc24bb4547f3a9f24d8ff302b",
                "memo": "5555",
                "ledger": 62950942,
                "memo_type": "text",
                "created_at": "2026-06-09T11:00:58Z",
                "successful": true,
                "source_account": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
                "operation_count": 1,
                "fee_charged_stroops": 100
            },
            {
                "hash": "54f436206482727fcb0dd3f977486cd846c5e03b81e48852dbfff6df2954b084",
                "memo": "1780326726274350770",
                "ledger": 62950934,
                "memo_type": "text",
                "created_at": "2026-06-09T11:00:13Z",
                "successful": true,
                "source_account": "GAYRNYXBSL52JEMZWGSWQAXV747CQYOYN5BLKQG7VNM53KS5N7EFRIKN",
                "operation_count": 1,
                "fee_charged_stroops": 100
            },
            {
                "hash": "d77e7f73da51f2e5c0a308f9898fa3880ce5366c4f1b15d371672d25c78f7ffb",
                "memo": "1780326726274350770",
                "ledger": 62950897,
                "memo_type": "text",
                "created_at": "2026-06-09T10:56:40Z",
                "successful": true,
                "source_
…