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

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.

Response

Account information.

userId
string
required
Example:

"user_abc123"

walletAddress
string | null
required
Example:

"0xDead1234..."

createdAt
integer
required
Example:

1740000000000

email
string | null
Example:

"trader@example.com"

copyTradingEnabled
boolean
Example:

true