Aller au contenu
GET /v1/payments

Recent payments in/out

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/stellar-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
…