Wholesale coin distribution
Priced for bulk. Funded in minutes. Delivered in seconds.
Place orders across platforms through a single API.
Order stream
live · merchant.yallacoins.team
Order
Qty
Unit
Status
B
MRC-…734
1,000
$0.85
pending
K
MRC-…892
2,000
$0.81
completed
S
MRC-…104
500
$0.82
completed
B
MRC-…560
5,000
$0.85
processing
K
MRC-…018
500
$0.81
completed
Today
$48,210
volume
12.4% below market
Priced the lowest
Wholesale rates
below
what the market will quote you.
Live price board
live
Product
vs market
Unit
Save
B
Bigo
×1,000
K
Kiti
×2,000
S
SoulChill
×500
Projected annual savings
$248K
Per unit
$0.12
Per month
$20.7K
Vs #2
+$82K
For developers
Integrated in an afternoon.
One REST API to place orders, track status, and automate distribution.
API-key auth
Simple, secure authentication with scoped API keys.
Idempotent ordering
Retry safely. Same client_order_id with the same payload returns the existing order.
Async status polling
Orders complete in the background — poll until a terminal status.
# Place a wholesale order — idempotent by design
curl -X POST https://merchant.yallacoins.team/api/v1/orders/ \
-H "Authorization: Api-Key sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"product_id": 1,
"target_account": "108594930",
"quantity": 1000,
"client_order_id": "ORDER-2026-0042"
}'
// Place a wholesale order — idempotent by design
const res = await fetch(
"https://merchant.yallacoins.team/api/v1/orders/",
{
method: "POST",
headers: {
Authorization: "Api-Key sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
product_id: 1,
target_account: "108594930",
quantity: 1000,
client_order_id: "ORDER-2026-0042",
}),
},
);
const order = await res.json();
import requests
# Place a wholesale order — idempotent by design
resp = requests.post(
"https://merchant.yallacoins.team/api/v1/orders/",
headers={
"Authorization": "Api-Key sk_live_...",
"Content-Type": "application/json",
},
json={
"product_id": 1,
"target_account": "108594930",
"quantity": 1000,
"client_order_id": "ORDER-2026-0042",
},
)
order = resp.json()
201 CREATED
~ 120ms
{
"order_id": "MER-260718-A1B2C3D4E5F6",
"client_order_id": "ORDER-2026-0042",
"status": "pending",
"product_id": 1,
"product_name": "Bigo",
"target_account": "108594930",
"quantity": 1000,
"unit_price": "0.01770000",
"total_price": "17.70",
"created_at": "2026-07-18T12:30:00Z"
}
Frequently Asked Questions
Register a merchant account and submit your business documents on the KYB page. Once verified, wholesale pricing is available on your products page.
We support bank wire transfers and cryptocurrency (USDT). Minimum deposit is $50,000 USD.
We currently support Bigo, Kiti, and SoulChill, with new platforms added regularly.