Skip to main content
GET
/
account
Get Account
curl --request GET \
  --url https://api.mintfax.com/v1/account \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "email": "jsmith@example.com",
  "created_at": "2023-11-07T05:31:56Z",
  "activated_at": "2023-11-07T05:31:56Z",
  "environment": {
    "id": "<string>",
    "name": "<string>"
  }
}

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. Use an account key (mfx_acct_...) for /account/* endpoints, and an environment key (mfx_test_... for sandbox, mfx_live_... for live) for /environment/*, /faxes, /webhooks, and /events.

Response

AccountResource

id
string
required

Account identifier (acct_-prefixed).

Example:

"acct_4HGhJ7K2pNm9XqL3VtR8Wz"

name
string
required

Account display name.

Example:

"Acme Corp"

email
string<email>
required

Primary account email.

Example:

"dev@acme.com"

created_at
string<date-time>
required

UTC timestamp when the account was created.

activated_at
string<date-time> | null
required

UTC timestamp when the account was activated; null if not yet activated.

environment
object
required
Last modified on May 21, 2026