Skip to main content
GET
/
providers
List providers
curl --request GET \
  --url https://app.sendmux.ai/api/v1/providers \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": [
    {
      "id": "dprov_clxxxxxxxxxxxxxxxxxxxxxxxxx",
      "name": "Gmail API - Marketing",
      "type": "smtp",
      "status": "active",
      "status_reason": "<string>",
      "is_active": true,
      "from_email": "<string>",
      "from_name": "<string>",
      "created_at": "2026-03-01T10:00:00Z",
      "last_tested_at": "<string>",
      "last_used_at": "<string>"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>"
  },
  "meta": {
    "request_id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sendmux.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Sendmux API key. Obtain from the dashboard under API Keys. Format: smx_root_...

Query Parameters

cursor
string

Pagination cursor — the next_cursor from the previous response.

status
enum<string>

Filter by status

Available options:
active,
inactive,
error,
pending
type
enum<string>

Filter by provider type

Available options:
smtp,
gmail_api,
outlook_api
limit
integer

Maximum results (default 50, max 100)

Required range: 1 <= x <= 100

Response

Provider list

ok
enum<boolean>
required
Available options:
true
data
object[]
required
pagination
object
required
meta
object
required