Skip to main content
GET
/
sender
Get all senders
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/sender \
  --header 'X-Team-ApiKey: <api-key>'
[
  {
    "id": "sender_4vK3WFhMgvOwUNyaL4QxCD",
    "name": "John Smith",
    "email": "john@example.com",
    "isWhitelisted": true
  }
]
📊 Response includes:
  • Sender ID
  • Sender name
  • Email address
  • isWhitelisted
🔍 Sender States:
  • false : Pending
  • true : Verified
💡 Use this endpoint to:
  • Build sender selection dropdowns
  • Monitor verification status
  • Audit sender inventory
  • Check domain authentication

Authorizations

X-Team-ApiKey
string
header
required

Team API key for authentication. Find your API key in SendX Settings → Team API Key.

Example:

X-Team-ApiKey: your_team_api_key_here

Response

✅ Senders retrieved successfully

id
string

Unique sender identifier with sender_ prefix

Example:

"sender_4vK3WFhMgvOwUNyaL4QxCD"

name
string

Sender display name

Example:

"John Smith"

email
string<email>

Sender email address

Example:

"john@example.com"

isWhitelisted
boolean

Sender whitelist status

Example:

true

I