Skip to main content
GET
/
api
/
v1
/
account
Get account info
curl --request GET \
  --url https://carboncopy.news/api/v1/account \
  --header 'Authorization: Bearer <token>'
{
  "userId": "user_abc123",
  "walletAddress": "0xDead1234...",
  "createdAt": 1740000000000,
  "email": "trader@example.com",
  "copyTradingEnabled": true
}

Authorizations

Authorization
string
header
required

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

Response

Account information.

userId
string
required

Internal Carbon Copy user ID.

Example:

"user_abc123"

walletAddress
string | null
required

User's connected Polymarket wallet address.

Example:

"0xDead1234..."

createdAt
integer
required

Unix timestamp (ms) of account creation.

Example:

1740000000000

email
string | null

User's email address, if provided.

Example:

"trader@example.com"

copyTradingEnabled
boolean

Global kill-switch for copy trading.

Example:

true