Skip to main content

Zyntra API (1.0.0)

Download OpenAPI specification:Download

API for temporary mail with authorization via API keys

Email

Retrieve a list of emails for a mailbox

Authorizations:
apiKeyAuth
query Parameters
inbox
required
string
skip
integer
Default: 0
Example: skip=0
limit
integer
Default: 20
Example: limit=20

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Retrieve a specific email

Authorizations:
apiKeyAuth
query Parameters
message_uuid
required
string
Example: message_uuid=550e8400-e29b-41d4-a716-446655440000

Responses

Response samples

Content type
application/json
{
  • "to_address": "[email protected]",
  • "from_address": "[email protected]",
  • "subject": "Your verification code",
  • "body": "Sample text\n",
  • "html": null,
  • "text_as_html": "<p>Sample text</p>",
  • "received_at": "2025-03-25T04:41:53.816Z",
  • "to_json": {
    },
  • "from_json": {
    },
  • "cc_json": { },
  • "bcc_json": { },
  • "headers": { },
  • "attachments_uuid": [
    ],
  • "links": []
}

Delete an email

Authorizations:
apiKeyAuth
query Parameters
message_uuid
required
string
Example: message_uuid=550e8400-e29b-41d4-a716-446655440000

Responses

Get the last received email

Retrieves the most recent email received for a specified inbox.

Authorizations:
apiKeyAuth
query Parameters
email
required
string

The full inbox address for which to retrieve the last email.

Responses

Response samples

Content type
application/json
{
  • "to_address": "[email protected]",
  • "from_address": "[email protected]",
  • "subject": "Your verification code",
  • "body": "Sample text\n",
  • "html": null,
  • "text_as_html": "<p>Sample text</p>",
  • "received_at": "2025-03-25T04:41:53.816Z",
  • "to_json": {
    },
  • "from_json": {
    },
  • "cc_json": { },
  • "bcc_json": { },
  • "headers": { },
  • "attachments_uuid": [
    ],
  • "links": []
}

Attachment

Download an attachment

Downloads an attachment by its UUID

Authorizations:
apiKeyAuth
path Parameters
attachment_uuid
required
string
Example: cf94e7b7-35cb-4648-946c-560acd45e145

Responses

Retrieve a list of email attachments

Returns a list of all attachments for the specified email.

Authorizations:
apiKeyAuth
query Parameters
message_uuid
required
string
Example: message_uuid=abcd1234-5678-90ef-ghij-klmnopqrstuv

Responses

Response samples

Content type
application/json
[
  • {
    }
]