Skip to content

Emails API

Access and manage captured emails.

List Emails

GET /v1/emails

Parameters: - page, limit: Pagination - threat_score: Filter by threat score - threat_type: Filter by threat type - date_range: Filter by date range - sort: Sort results

Example:

curl -X GET "https://api.smailander.com/v1/emails?threat_score=gt:50&limit=25" \
  -H "Authorization: Bearer YOUR_API_KEY"

Get Email Details

GET /v1/emails/{id}

Delete Email

DELETE /v1/emails/{id}

List Attachments

GET /v1/emails/{id}/attachments

Download Attachment

GET /v1/emails/{id}/attachments/{attachment_id}

Support