Skip to main content
GET
/
api
/
v1
/
orders
/
{id}
Get order by ID
curl --request GET \
  --url https://carboncopy.inc/api/v1/orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "k17xyz789",
  "marketId": "<string>",
  "side": "YES",
  "amount": 50,
  "status": "filled",
  "createdAt": 1741550000000,
  "marketQuestion": "<string>",
  "filledAmount": 50,
  "price": 0.62,
  "filledAt": 123,
  "errorMessage": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.carboncopy.inc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in the format cc_<64 hex characters>. Obtain from the Dashboard under Settings → API Keys.

Path Parameters

id
string
required
Example:

"k17xyz789"

Response

Order details.

id
string
required
Example:

"k17xyz789"

marketId
string
required
side
enum<string>
required
Available options:
YES,
NO
amount
number
required
Example:

50

status
enum<string>
required
Available options:
filled,
pending,
cancelled,
failed
createdAt
integer
required
Example:

1741550000000

marketQuestion
string | null
filledAmount
number | null
Example:

50

price
number | null
Example:

0.62

filledAt
integer | null
errorMessage
string | null