Skip to main content
GET
/
api
/
v1
/
receive
/
options
/
{address}
Get receive options
curl --request GET \
  --url https://api.example.com/api/v1/receive/options/{address}
{
  "code": 0,
  "msg": "ok",
  "data": {
    "address": "0xabc1230000000000000000000000000000000000",
    "updatedAt": "2026-05-11T10:00:00.000Z",
    "assets": [
      {
        "symbol": "USDC",
        "name": "USD Coin",
        "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "networks": [
          {
            "chainId": 8453,
            "name": "Base",
            "nativeSymbol": "ETH",
            "explorerUrl": "https://basescan.org",
            "faucetUrl": ""
          }
        ]
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexfi.robert.dpdns.org/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

address
string
required

Wallet address.

Example:

"0xabc1230000000000000000000000000000000000"

Query Parameters

chainIds
string

Chain filter.

Example:

"8453,1"

includeZero
enum<string>

Whether zero-balance assets should be included.

Available options:
true,
false
Example:

"false"

Response

200 - application/json

Receive options response

Standard response envelope.

code
integer
required

Business status code. 0 means success.

Example:

0

msg
string
required

Human-readable message.

Example:

"ok"

data
object