Skip to main content
POST
/
account
/
keys
Create API Key
curl --request POST \
  --url https://api.mintfax.com/v1/account/keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "environment_id": "<string>"
}
'
{
  "api_key": "<string>",
  "key": {
    "id": "<string>",
    "name": "<string>",
    "prefix": "<string>",
    "scope": {
      "environments": [
        "<string>"
      ],
      "abilities": [
        "<string>"
      ]
    },
    "last_used_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

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.

Body

application/json
name
string
required
Maximum string length: 255
scope_kind
enum<string>
required
Available options:
test,
live,
account
environment_id
string

Response

api_key
string
required
key
object
required
Last modified on May 21, 2026