Merchant API (Private)
All private merchant API requires the use of Multichain's project API Key in the header.
API Ratelimit β : 10 calls/second
Create Subwallet
POST https://api.multichain.info/app/v1/subwallet/create
Generate a new subwallet address for all network or a single network.
Query Parameters
network
string
Specify the network type. E.g. "ETHEREUM" or "TRON" or leave empty to generate all subwallet address type available.
Headers
multichain-api-key
string
Input your Multichain's project API key here.
{
"subwallets": {
"ETHEREUM": "0x923eE1F30C9CAe2E86b2438Cc8a1910fFF28f1d8",
"TRON": "TTyBHncVGXPRcKePpL5u8RD4YauhwdKmJP"
}
}{
"status": false,
"message": "Invalid project api key or project had been disabled, please enable it in your dashboard settings."
}Get Asset Info
GET https://api.multichain.info/app/v1/assets
Get all user-specific asset info, inclusive of latest fees.
Query Parameters
assetUid
string
Get assetUid from Public API -> "Get All Asset Info" endpoint.
Headers
multichain-api-key
string
Input your Multichain's project API Key here.
Get Deposit History
GET https://api.multichain.info/app/v1/subwallet/deposit/history
Get address or all project deposit history by assetUid. Please be mindful when using this API due to its computational load.
Query Parameters
limit
string
Default/Max: 200
page
string
View paginated data
address
string
Enter subwallet address
assetUid
String
Get uid from Public API -> "Get All Asset Info" endpoint.
Headers
multichain-api-key
string
Input your Multichain's project API Key here.
Last updated
Was this helpful?