Skip to main content
GET
/
webhooks
/
attempts
List Webhook Delivery Attempts
curl --request GET \
  --url https://api.mintfax.com/v1/webhooks/attempts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "<unknown>"
  ],
  "next_cursor": "<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.

Query Parameters

cursor
string | null
Pattern: ^wha_[0-9A-HJKMNP-TV-Z]{26}$
limit
integer | null
Required range: 1 <= x <= 100
endpoint
string | null
Pattern: ^we_[0-9A-Za-z]{22}$
fax
string | null
Pattern: ^fax_[0-9A-Za-z]{22}$
status
enum<string> | null
Available options:
succeeded,
failed

Response

data
any[]
required
next_cursor
string | null
required
Last modified on May 21, 2026