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>"
}
}Returns a paginated list of configured email providers with safe fields (no encrypted credentials). Uses cursor-based pagination ordered by created_at descending — pass cursor=<next_cursor> from the previous response to fetch the next page.
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.
Sendmux API key. Obtain from the dashboard under API Keys. Format: smx_root_...
Pagination cursor — the next_cursor from the previous response.
Filter by status
active, inactive, error, pending Filter by provider type
smtp, gmail_api, outlook_api Maximum results (default 50, max 100)
1 <= x <= 100Provider list
true Hide child attributes
Provider public ID
"dprov_clxxxxxxxxxxxxxxxxxxxxxxxxx"
Provider display name
"Gmail API - Marketing"
Provider type
smtp, gmail_api, outlook_api Current status
active, inactive, error, pending Reason for current status
Whether provider is enabled
Default from email address
Default from display name
ISO 8601 creation timestamp
"2026-03-01T10:00:00Z"
Last connection test timestamp
Last email sent timestamp
Was this page helpful?