/v1/payments
Recent payments in/out
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/stellar-api/v1/payments" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stellar-api/v1/payments", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stellar-api/v1/payments");
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/payments",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 10,
"source": "Stellar Horizon",
"address": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"payments": [
{
"to": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"from": "GC5I6YQ4UTGG2LIS62CSVLLVCTPGFARO56ROLUMNTXLNYCW3V3N4B62Y",
"type": "payment",
"asset": "XLM",
"amount": 2551.97,
"created_at": "2026-06-09T11:26:55Z",
"asset_issuer": null,
"transaction_hash": "f42fbd2c23455fff8e763e6952244dc504ed74544737885d1ef854adf3183e5d"
},
{
"to": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"from": "GARJGFVNU3SXBSLDR2OWO47VYAMIGPB7BGNOHIJ2YNXGZ6BOPLYQD3ZB",
"type": "payment",
"asset": "XLM",
"amount": 25,
"created_at": "2026-06-09T11:07:13Z",
"asset_issuer": null,
"transaction_hash": "de7e62a63074fe58b0cb6b2f446a65ac27e3a328b0b9699665f4325d1748a0dd"
},
{
"to": "GAQZU7Y7GB3E4XOA3ZXEZDOTIEIWQRYOAIVJ6STY2YTUQAGZL3GYJCXG",
"from": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"type": "payment",
"asset": "USDC",
"amount": 249,
"created_at": "2026-06-09T11:01:11Z",
"asset_issuer": "GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN",
"transaction_hash": "082912a0f5e65de377c5d2177922effed838bbae26137a4b54aaea940db180e2"
},
{
"to": "GAQZU7Y7GB3E4XOA3ZXEZDOTIEIWQRYOAIVJ6STY2YTUQAGZL3GYJCXG",
"from": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"type": "payment",
"asset": "XLM",
"amount": 9337.728473,
"created_at": "2026-06-09T11:00:58Z",
"asset_issuer": null,
"transaction_hash": "4d65b7e110c5079523a35f85641abd7fe728154dc24bb4547f3a9f24d8ff302b"
},
{
"to": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"from": "GAYRNYXBSL52JEMZWGSWQAXV747CQYOYN5BLKQG7VNM53KS5N7EFRIKN",
"type": "payment",
"asset": "XLM",
"amount": 30605.8607328,
"created_at": "2026-06-09T11:00:13Z",
"asset_issuer": null,
"transaction_hash": "54f436206482727fcb0dd3f977486cd846c5e03b81e48852dbfff6df2954b084"
},
{
"to": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
"from": "GAYRNYXBSL52JEMZWGSWQAXV747CQYOYN5BLKQG7VNM53KS5N7EFRIKN",
"type": "payment",
"asset": "XLM",
"amount": 20,
"created_at": "2
…