跳转到主要内容
GET
/
api
/
v1
/
receive
/
options
/
{address}
获取收款选项
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.

路径参数

address
string
必填

钱包地址。

示例:

"0xabc1230000000000000000000000000000000000"

查询参数

chainIds
string

链过滤。

示例:

"8453,1"

includeZero
enum<string>

是否包含零余额资产。

可用选项:
true,
false
示例:

"false"

响应

200 - application/json

成功返回收款网络

统一响应包裹结构。

code
integer
必填

业务状态码,0 表示成功。

示例:

0

msg
string
必填

可读返回消息。

示例:

"ok"

data
object