Skip to content
GET /v1/account

An address's full wallet

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

Example response

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

{
    "data": {
        "xlm": 173148.1798718,
        "source": "Stellar Horizon",
        "address": "GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM",
        "balances": [
            {
                "asset": "USDC",
                "limit": 922337203685.4775,
                "issuer": "GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN",
                "balance": 100.0000003,
                "asset_type": "credit_alphanum4"
            },
            {
                "asset": "XLM",
                "limit": null,
                "issuer": null,
                "balance": 173148.1798718,
                "asset_type": "native"
            }
        ],
        "sequence": "2390162185803341",
        "asset_count": 1,
        "home_domain": null,
        "num_sponsored": 0,
        "num_sponsoring": 0,
        "subentry_count": 1,
        "last_modified_ledger": 62951212
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:16.574Z",
        "request_id": "372d5e6e-8e13-46ce-8950-f54ad713b55d"
    },
    "status": "ok",
    "message": "Account retrieved successfully",
    "success": true
}