Application Programming Interface
Create your own mixing website without hassle by using our seamless mixer API
Create an Order
Request URL | POST http://the-crypto-mixer.io /api/create |
---|---|
Parameter | Info |
api_key (string) | Your private API key which could be found in your Affiliate Dashboard. |
currency (string) | The currency you want to mix, either BTC, ETH, or USDT. |
address (array) | The final adress for clean coins. The array can contain up to 5 wallet addresses. |
delay (int) | The desired mixing delay in minutes (Should be at least 10mins). |
The order creation will return a JSON confirming the order, including a Unique Order ID:
{
"order":{
"id":"*UNIQUE_ORDER_ID*",
"input_address":"*INPUT_WALLET_ADDRESS*",
"guarantee_letter_url":"http://the-crypto-mixer.io /...",
"created_at":"2020-08-01T15:00:30+00:00",
"delay": 10,
"output_addresses":[{
"0": "*WALLET ADDRESS 1*",
"1": "*WALLET ADDRESS 2*",
"2": "*WALLET ADDRESS 3*",
"3": "*WALLET ADDRESS 4*",
"4": "*WALLET ADDRESS 5*"
}]
}
}
Get Order Infos
Request URL | POST http://the-crypto-mixer.io /api/get |
---|---|
Parameter | Info |
api_key (string) | Your private API key which could be found in your Affiliate Dashboard. |
*UNIQUE_ORDER_ID* (string) | The Unique Order ID given for that specific order. |
The returned JSON:
{
"order":{
"id":"*UNIQUE_ORDER_ID*",
"input_address":"*INPUT_WALLET_ADDRESS*",
"guarantee_letter_url":"http://the-crypto-mixer.io /...",
"input_transactions":[{...}]
"created_at":"2020-08-01T15:00:30+00:00",
"delay": 10,
"output_addresses":[{
"0": "*WALLET ADDRESS 1*",
"1": "*WALLET ADDRESS 2*",
"2": "*WALLET ADDRESS 3*",
"3": "*WALLET ADDRESS 4*",
"4": "*WALLET ADDRESS 5*"
}],
"output_transactions":[{...}]
}
}
Enjoy Commission
For every mixing order, you will be rewarded 0.5% of the total amount of coins. Commissions will be send directly to your wallet.