Skip to main content
GET
/
v1
/
sub-wallet
/
address
/
list
Get List of sub-Wallet Addresses
curl --request GET \
  --url https://api.openxswitch.com/v1/sub-wallet/address/list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "34303043....",
      "coin": "Bitcoin",
      "chain": "Ethereum",
      "network": "Mainnet",
      "address": "0x123456789abcdef",
      "workspaceId": "60f7d4b5b4d5c909a85b8d7e",
      "createdAt": null,
      "walletId": "63e1b8c2f18e310bb11f8a9c",
      "tag": "Memo123"
    }
  ],
  "totalPage": 123,
  "pageNo": 123,
  "pageLimit": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.openxswitch.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subWalletId
string
required

The ID of the sub-wallet for retrieving addresses

coin
string

The coin type to filter addresses by

chain
string

The blockchain network to filter addresses by

pageLimit
string

The maximum number of results per page

pageNo
string

The page number for paginated results

Response

success
boolean
required
Example:

true

data
object[]
required
totalPage
number
required
pageNo
number
required
pageLimit
number
required