Skip to main content
GET
/
fax
cURL
curl https://api.mintfax.com/v1/fax \
  -H "Authorization: Bearer fx_test_abc123..."
{
  "data": [
    {
      "id": "9c1a2b3d-4e5f-6789-abcd-ef0123456789",
      "status": "queued",
      "to": "+12125551234",
      "retries_remaining": 3,
      "created_at": "2026-01-15T10:30:00Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "pages": 3,
      "carrier": "<string>",
      "carrier_id": "<string>",
      "error_code": "<string>",
      "error_message": "<string>",
      "webhook_url": "<string>",
      "idempotency_key": "<string>",
      "submitted_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "current_page": 1,
  "last_page": 5,
  "per_page": 20,
  "total": 97,
  "next_page_url": "https://api.mintfax.com/v1/fax?page=2",
  "prev_page_url": null
}

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.

Query Parameters

page
integer
default:1

Page number

Response

200 - application/json

Paginated fax list

data
object[]
current_page
integer
Example:

1

last_page
integer
Example:

5

per_page
integer
Example:

20

total
integer
Example:

97

next_page_url
string | null
Example:

"https://api.mintfax.com/v1/fax?page=2"

prev_page_url
string | null
Example:

null