Skip to main content
GET
/
emails
List/Search emails
curl --request GET \
  --url https://api.deliverykey.com/v1/emails \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "from": "[email protected]",
      "to": "[email protected]",
      "subject": "Hello, World!",
      "html": "<string>",
      "id": "b722edc1-7ad4-4845-9fa5-e4c4f2a923d4",
      "text": "<string>",
      "created_at": "2022-10-12T18:57:23.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

data
object[]