Open or resume full peer-to-peer (C2C) merchant business operations, activating merchant store visibility and enabling inbound trade orders.
/sapi/v1/c2c/merchant/startBusiness
This endpoint transitions a merchant's overall business operational state from closed/resting to fully active. When triggered, the merchant storefront reopens on the Binance C2C (P2P) platform, restoring public advertisement visibility and enabling counterparties to place new orders.
Trading bots, merchant ERP systems, and automated desks invoke this endpoint at the beginning of active trading shifts or immediately after liquidity rebalancing procedures are completed.
Header parameters accepted by the endpoint.
| Header | Type | Required | Description |
|---|---|---|---|
clientType |
STRING | Required |
Client Device Type initiating the request (e.g., WEB, APP, WEB_MOBILE).
|
x-gray-env |
STRING | Optional | Environment flag identifier used for internal gray/stage testing. |
x-trace-id |
STRING | Optional | Custom client trace ID for request lifecycle tracking and debugging. |
x-user-id |
STRING | Optional | Target user identifier for merchant permission checks. |
No JSON payload body is required for this operation. Simply provide the mandatory clientType inside the HTTP Request Headers.
Example POST request using cURL to start merchant business operations.
curl -X POST \
'https://api.binance.com/sapi/v1/c2c/merchant/startBusiness' \
-H 'clientType: WEB'
Example response returned on successful request execution.
{
"code": "000000",
"message": "success",
"data": true,
"success": true
}
| Field | Type | Description |
|---|---|---|
code |
STRING |
Standard Binance status response code ("000000" indicates success).
|
message |
STRING | Status description or response feedback message. |
data |
BOOLEAN |
Returns true when merchant business operations are successfully opened and active.
|
success |
BOOLEAN | Indicates overall request execution result. |
Workflow for opening merchant business operations.
data: true.
Automatically open merchant operations at the start of business hours using scheduled server cron jobs.
Reopen trade intake automatically after completing bank transfer reconciliations or fiat deposits.
Enable trading desks to reactivate merchant status automatically during bot daemon startup sequences.
This article is part of our complete learning guide covering professional cross-exchange cryptocurrency arbitrage.
Explore the Spot Arbitrage Guide →This article is part of our complete learning guide covering Binance P2P automation, merchant tools, and automated trading.
Explore the Binance P2P Automation Guide →