Skip to main content
POST
/
account
/
register
cURL
curl -X POST https://api.mintfax.com/v1/account/register \
  -H "Content-Type: application/json" \
  -d '{"name": "Acme Corp", "email": "dev@acme.com"}'
{
  "email": "dev@acme.com",
  "message": "Activation code sent. Valid for 15 minutes.",
  "expires_in": 900
}

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
name
string
required

Account or company name

Maximum string length: 255
Example:

"Acme Corp"

email
string<email>
required

Contact email address (receives the activation code)

Maximum string length: 255
Example:

"dev@acme.com"

Response

Activation code sent

email
string<email>
required

The email address the activation code was sent to

Example:

"dev@acme.com"

message
string
required
Example:

"Activation code sent. Valid for 15 minutes."

expires_in
integer
required

Seconds until the activation code expires

Example:

900