v0 - API Reference
Get Burners
GET https://burnermail.io/api/burner_emails
This endpoint allows you to get a list of your burners.
Headers
API_KEY
string
Authentication key.
[
{
"email": "[email protected]",
"active": true,
"forwarded_emails": 19,
"blocked_emails": 0,
"description": ""
},
{
"email": "[email protected]",
"active": true,
"forwarded_emails": 91,
"blocked_emails": 0,
"description": ""
},
...
]Empty response.Generate Burner
POST https://burnermail.io/api/burner_emails
This endpoint generates a random burner with the specified domain name or the default one that you have set in Settings.
Headers
API_KEY
string
Authentication key.
Request Body
domain
string
Optionally provide a domain name. If no domain name is provided, then the default one will be used.
Generate Custom Burner
POST https://burnermail.io/api/burner_emails/custom
This endpoint generates a custom burner email address.
Headers
API_KEY
string
Authentication key.
Request Body
address
string
The burner email address prefix - the part before the "at" sign (address@tryburner.email)
domain
string
The domain for the burner email address - the part after the "at" sign (address@tryburner.email)
Delete Burner
POST https://burnermail.io/api/burner_emails/delete
This endpoint deletes a specific burner. Please keep in mind that his action is PERMANENT and there is no going back!
Headers
API_KEY
string
Authentication key.
Request Body
Last updated
Was this helpful?