Retrieve Company Minter Wallets
1. Retrieve Company Minter Wallets by chain
chainRequest Endpoint: reference
HTTP
GET /api/v2/wallets/{chain}Parameter
Param Type
Description
Data Type
Mandatory
{chain}
Path
The blockchain to filter the result by
String
✅
includeBalance
Query
This flag indicates whether to include the balance of company minter wallets in the response or not.
Boolean
❌
Example Request:
HTTP
GET /api/v2/wallets/MATIC?includeBalance=trueResponse Body:
JSON
{
"success": true,
"result": [
{
"chain": "MATIC",
"address": "0xcb445780e77542d7046461ba72f17d20dc176eb0",
"balance": 1.5078641,
"symbol": "MATIC",
"rawBalance": "1507864100000000000",
"decimals": 18
},
{
"chain": "MATIC",
"address": "0xc647188ed41259164cf22d5a30fb70e4623f6acf",
"balance": 2,
"symbol": "MATIC",
"rawBalance": "2000000000000000000",
"decimals": 18
}
]
}2. Retrieve All Company Minter Wallets
Request Endpoint: reference
HTTP
Example Request:
HTTP
Response Body:
JSON
Last updated