get
https://api.neutron.me/api/v2/account/onchain-address
Retrieve the static Bitcoin on-chain address for the authenticated account.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Get your account's static Bitcoin on-chain deposit address. Any Bitcoin sent to this address is automatically credited to your Neutron BTC wallet.
Example Request
curl "https://api.neutron.me/api/v2/account/onchain-address" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"Example Response
{
"resultStatus": "success",
"data": {
"staticOnchainAddress": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"accountId": "ne01-abc123def456"
}
}Static vs Transaction Address
| Method | Use when |
|---|---|
| Static address (this endpoint) | Persistent deposit address — use for recurring deposits, display in your app |
| Transaction address (Receive Bitcoin On-Chain) | One-time address tied to a specific amount and quote |
The static address doesn't expire and can receive multiple deposits. Transaction-based addresses are linked to a specific transaction with a quoted amount and expiry.
Notes
- The address is a SegWit (bech32) address starting with
bc1 - Deposits require on-chain confirmations before funds appear in your wallet
- This is the same address shown in the Neutron dashboard
- One static address per account
Related
- Receive Bitcoin On-Chain — Create a transaction-based receive with a specific amount
- Send Bitcoin On-Chain — Send BTC to an external address
- Get USDT Receive Address — USDT deposit address
