Skip to main content
GET
/
providers
List sending accounts
curl --request GET \
  --url https://app.sendmux.ai/api/v1/providers \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "request_id": "req_clxxxxxxxxxxxxxxxxxxxxxxxxx"
  },
  "data": [
    {
      "id": "dprov_clxxxxxxxxxxxxxxxxxxxxxxxxx",
      "name": "Transactional SMTP",
      "type": "smtp",
      "status": "active",
      "status_reason": "<string>",
      "is_active": true,
      "is_shared": true,
      "is_editable": true,
      "allowed_actions": {
        "update": true,
        "delete": true,
        "activate": true,
        "deactivate": true,
        "test": true
      },
      "smtp_host": "<string>",
      "smtp_port": 123,
      "smtp_protocol": "<string>",
      "smtp_username": "<string>",
      "has_smtp_password": true,
      "from_email": "<string>",
      "from_name": "<string>",
      "reply_to_email": "<string>",
      "reply_to_name": "<string>",
      "oauth_email": "<string>",
      "has_refresh_token": true,
      "quotas": {
        "per_second": {
          "min": 60,
          "max": 60
        },
        "per_minute": {
          "min": 60,
          "max": 60
        },
        "per_hour": {
          "min": 60,
          "max": 60
        },
        "per_day": {
          "min": 60,
          "max": 60
        }
      },
      "percentage": 100,
      "tracking_domain": "<string>",
      "created_at": "2026-05-25T02:18:00Z",
      "updated_at": "2026-05-25T02:18:00Z",
      "last_tested_at": "<string>",
      "last_used_at": "<string>"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<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. Use a root API key for Management API routes, or a mailbox credential for Mailbox API routes. Obtain keys from the dashboard under API Keys.

Query Parameters

cursor
string

Pagination cursor — the next_cursor from the previous response.

status
enum<string>
Available options:
active,
inactive,
error,
pending
type
enum<string>
Available options:
smtp,
gmail_api,
outlook_api,
amazon_ses
limit
integer

Maximum results (default 50, max 100)

Required range: 1 <= x <= 100

Response

Sending account list

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