cURL
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 } ]
Retrieves all verified sender addresses.
Team API key for authentication. Find your API key in SendX Settings → Team API Key.
Example:
X-Team-ApiKey: your_team_api_key_here
✅ Senders retrieved successfully
Unique sender identifier with sender_ prefix
^sender_[a-zA-Z0-9]{22}$
"sender_4vK3WFhMgvOwUNyaL4QxCD"
Sender display name
"John Smith"
Sender email address
"john@example.com"
Sender whitelist status
true
Was this page helpful?