Skip to main content
GET
/
tryon
/
v1
/
account
curl "https://api.genlook.app/tryon/v1/account" \
  -H "x-api-key: gk_your_api_key"
{
  "id": "cm8acc789xyz",
  "name": "My E-commerce Store",
  "email": "dev@mystore.com",
  "creditBalance": 450,
  "isActive": true,
  "createdAt": "2026-03-01T12:00:00.000Z"
}
Returns your account details including current credit balance.
curl "https://api.genlook.app/tryon/v1/account" \
  -H "x-api-key: gk_your_api_key"

Response

id
string
required
Account ID.
name
string
required
Account name.
email
string
Contact email.
creditBalance
number
required
Remaining credits. Each try-on generation costs 1 credit.
isActive
boolean
required
Whether the account is active.
createdAt
string
required
ISO 8601 timestamp.
{
  "id": "cm8acc789xyz",
  "name": "My E-commerce Store",
  "email": "dev@mystore.com",
  "creditBalance": 450,
  "isActive": true,
  "createdAt": "2026-03-01T12:00:00.000Z"
}