Documentation Index
Fetch the complete documentation index at: https://dev.moonpay.com/llms.txt
Use this file to discover all available pages before exploring further.
Properties
| Property | Type | Required | Description |
|---|
address | string | Yes | The wallet address |
tag | string | No | An optional memo or destination tag (used by some blockchains like XRP, XLM) |
Example
Standard Wallet
{
"address": "0x1234567890abcdef1234567890abcdef12345678"
}
Wallet with Memo/Tag
Some blockchains like XRP and XLM require a destination tag or memo to route funds to the correct account:
{
"address": "rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9",
"tag": "12345678"
}
For blockchains that require tags/memos (XRP, XLM, etc.), always include the
tag field when provided. Missing tags can result in lost funds.