Skip to main content
POST
/
account
/
register
/
verify
cURL
curl -X POST https://api.mintfax.com/v1/account/register/verify \
  -H "Content-Type: application/json" \
  -d '{"email": "dev@acme.com", "code": "482901"}'
{
  "account": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789",
    "name": "Acme Corp"
  },
  "user": {
    "id": 42,
    "email": "dev@acme.com"
  },
  "environment": {
    "id": "w1x2y3z4-a5b6-7890-cdef-0123456789ab",
    "name": "Sandbox",
    "type": "sandbox"
  },
  "api_key": "fx_test_abc123def456..."
}

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

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
required

The email address the activation code was sent to

Maximum string length: 255
Example:

"dev@acme.com"

code
string
required

6-digit activation code from the email

Pattern: ^[0-9]{6}$
Example:

"482901"

Response

Registration complete

account
object
required
user
object
required
environment
object
required
api_key
string
required

Plain-text sandbox API key (only shown once)

Example:

"fx_test_abc123def456..."