curl --request POST \
--url https://carboncopy.news/api/v1/traders/{wallet}/pause \
--header 'Authorization: Bearer <token>'{
"walletAddress": "0xAbCd1234...",
"copyTradingEnabled": true,
"copyPercentage": 25,
"displayName": "alpha_trader",
"maxCopyAmount": 500,
"totalCopied": 14,
"pnl": 128.4,
"notificationsEnabled": true,
"followedAt": 1741500000000,
"recentTrades": [
{
"id": "k17abc123def456",
"traderWallet": "0xAbCd1234...",
"marketId": "0x1234abcd...",
"side": "YES",
"amount": 50,
"status": "open",
"createdAt": 1741550000000,
"marketQuestion": "Will BTC exceed $100k by end of 2025?",
"price": 0.62,
"pnl": 12.5,
"orderId": "k17xyz789",
"resolvedAt": 123
}
]
}Temporarily pause copy trading for a specific trader. New trades from this trader will be ignored until resumed.
curl --request POST \
--url https://carboncopy.news/api/v1/traders/{wallet}/pause \
--header 'Authorization: Bearer <token>'{
"walletAddress": "0xAbCd1234...",
"copyTradingEnabled": true,
"copyPercentage": 25,
"displayName": "alpha_trader",
"maxCopyAmount": 500,
"totalCopied": 14,
"pnl": 128.4,
"notificationsEnabled": true,
"followedAt": 1741500000000,
"recentTrades": [
{
"id": "k17abc123def456",
"traderWallet": "0xAbCd1234...",
"marketId": "0x1234abcd...",
"side": "YES",
"amount": 50,
"status": "open",
"createdAt": 1741550000000,
"marketQuestion": "Will BTC exceed $100k by end of 2025?",
"price": 0.62,
"pnl": 12.5,
"orderId": "k17xyz789",
"resolvedAt": 123
}
]
}API key in the format cc_<64 hex characters>. Obtain from the Dashboard under Settings → API Keys.
Copy trading paused.
Trader's Ethereum wallet address.
"0xAbCd1234..."
true if copy trading is currently active for this trader.
Percentage of each trade to copy.
0 <= x <= 10025
Optional display name for the trader.
"alpha_trader"
Maximum USDC to deploy per copied trade. null means no cap.
500
Total number of trades copied from this trader.
14
P&L in USDC from trades copied from this trader.
128.4
Whether push/email notifications are enabled for this trader's activity.
Unix timestamp (ms) when you started following this trader.
1741500000000
The 10 most recent trades by this trader.
Show child attributes
Was this page helpful?