curl --request GET \
--url https://carboncopy.news/api/v1/orders \
--header 'Authorization: Bearer <token>'{
"page": [
{
"id": "k17xyz789",
"marketId": "<string>",
"side": "YES",
"amount": 50,
"status": "filled",
"createdAt": 1741550000000,
"marketQuestion": "<string>",
"filledAmount": 50,
"price": 0.62,
"filledAt": 123,
"errorMessage": "<string>"
}
],
"isDone": true,
"continueCursor": "<string>"
}Returns a paginated list of orders placed by your copy-trading bot. Filter by status to focus on pending or failed orders.
curl --request GET \
--url https://carboncopy.news/api/v1/orders \
--header 'Authorization: Bearer <token>'{
"page": [
{
"id": "k17xyz789",
"marketId": "<string>",
"side": "YES",
"amount": 50,
"status": "filled",
"createdAt": 1741550000000,
"marketQuestion": "<string>",
"filledAmount": 50,
"price": 0.62,
"filledAt": 123,
"errorMessage": "<string>"
}
],
"isDone": true,
"continueCursor": "<string>"
}API key in the format cc_<64 hex characters>. Obtain from the Dashboard under Settings → API Keys.
Filter orders by status.
filled, pending, cancelled, failed 1 <= x <= 100Was this page helpful?