Skip to main content
GET
/
account
cURL
curl https://api.mintfax.com/v1/account \
  -H "Authorization: Bearer fx_test_abc123..."
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789",
  "name": "Acme Corp",
  "email": "dev@acme.com",
  "created_at": "2026-01-10T08:00:00Z",
  "environment": {
    "id": "w1x2y3z4-a5b6-7890-cdef-0123456789ab",
    "name": "Acme Corp",
    "type": "sandbox",
    "status": "active"
  }
}

Documentation Index

Fetch the complete documentation index at: https://mintfax.com/docs/llms.txt

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

Authorizations

Authorization
string
header
required

API key as Bearer token. Sandbox keys (fx_test_...) route to the sandbox environment. Live keys (fx_live_...) route to production.

Response

200 - application/json

Account details

id
string<uuid>
required
Example:

"a1b2c3d4-e5f6-7890-abcd-ef0123456789"

name
string
required
Example:

"Acme Corp"

email
string<email>
required
Example:

"dev@acme.com"

created_at
string<date-time>
required
Example:

"2026-01-10T08:00:00Z"

environment
object
required