stellarHorizonListAccountPayments
GET
https://triport.io/rpc/stellar/horizon/accounts/$STELLAR_ACCOUNT/payments?limit=1&order=descList payment-like operations for one account.
Stellar mainnetstellar:rpcstellar_read_rpc_heavy — 15 / 20 / 100 / 250 RPS (free / basic / pro / business) (default, unmeasured)
Returns a cursor-paginated HAL page of payment-like operations involving one account.
Use it for account-specific payment ingestion. Use the global payments endpoint when no account filter is needed, or the account transaction endpoint for transaction-level records.
Only retained Horizon history is available. The route currently has one measured operator and is best-effort without an SLA.
Parameters
accountstringrequiredStellar account ID in the path.
cursorstringoptionalOpaque Horizon paging token from a returned link.
orderstringoptionalSort direction:
asc or desc.limitintegeroptionalMaximum page size from 1 through 200; 201 was rejected in measurement.
Response
This schema-shaped example uses placeholders where the contract does not provide a measured value:
_linksobjectHAL navigation links; additional link relations may be present.
_links.next.hrefstringURL carrying the cursor for the next page.
_embeddedobjectContainer for the returned collection.
_embedded.recordsarrayPage of payment-like operation HAL resources.
Errors
See Stellar errors and the shared error reference.
| Status | Meaning | When it happens |
|---|---|---|
400 | Bad request | A query parameter is malformed or limit exceeds 200. |
401 | Unauthorized | The API key is missing or invalid. |
403 | Forbidden | The key lacks the required scope or tier. |
404 | Not found | A requested account or resource does not exist. |
429 | Rate limited | The stellar_read_rpc_heavy RPS budget is exceeded. |
Examples
JavaScript (fetch)
const account = process.env.STELLAR_ACCOUNT;
const response = await fetch(`https://triport.io/rpc/stellar/horizon/accounts/${account}/payments?limit=1&order=desc`, {
headers: {
"Authorization": `Bearer ${process.env.TRIPORT_API_KEY}`,
"Accept": "application/hal+json",
},
});
if (!response.ok) throw new Error(`Horizon returned ${response.status}`);
const payload = await response.json();
console.log(payload);Notes
limitis at most 200.- Continue from the cursor in
_links.next.href. - Related:
stellarHorizonListPaymentsandstellarHorizonListAccountTransactions. - Horizon is currently served by one measured operator on a best-effort basis without an SLA.
- This product surface is read-only; transaction submission is unavailable.