Skip to main content
GET
/
api
/
account
curl https://api.artificialstudio.ai/api/account \
  -H "Authorization: YOUR_API_KEY"
{
  "id": "507f1f77bcf86cd799439011",
  "email": "user@example.com",
  "credits": 1500,
  "plan": "pro",
  "createdAt": "2024-01-15T10:30:00.000Z"
}
Retrieve your account details, including credits balance and plan.

Response Fields

FieldTypeDescription
idstringUser ID
emailstringAccount email
creditsnumberAvailable credits
planstringCurrent plan: free or pro
createdAtstringAccount creation date
curl https://api.artificialstudio.ai/api/account \
  -H "Authorization: YOUR_API_KEY"
{
  "id": "507f1f77bcf86cd799439011",
  "email": "user@example.com",
  "credits": 1500,
  "plan": "pro",
  "createdAt": "2024-01-15T10:30:00.000Z"
}