Skip to content

Mail

tempmail (m.kuku.lu)

Create email


Request
GET https://api.voids.top/m-kuku-lu/create?domain=send4.uk
Host: api.voids.top
Response
{
  "success": true,
  "email": "[email protected]",
  "id": "9815da76-7c9a-4821-890a-2a626e959233"
}

Get inbox


Request
POST https://api.voids.top/m-kuku-lu/receive
Host: api.voids.top
Content-Type: application/json

{
  "email": "[email protected]",
  "id": "9815da76-7c9a-4821-890a-2a626e959233"
}
Response
{
  "success": true,
  "data": [
    {
      "from": "[email protected]",
      "to": "[email protected]",
      "body": "a",
      "title": "a",
    },
    ...
  ]
}

tempmail (tempmail.lol)

Create email


Request
GET https://api.voids.top/tempmail/create
Host: api.voids.top
Response
{
  "success": true,
  "email": "[email protected]",
  "id": "2m78kirs3qed106nr7rojtqppi0ydqdqslk3rn"
}

Get inbox


Request
POST https://api.voids.top/tempmail/receive
Host: api.voids.top
Content-Type: application/json

{
  "email": "[email protected]",
  "id": "2m78kirs3qed106nr7rojtqppi0ydqdqslk3rn"
}
Response
{
  "success": true,
  "data": [
    {
      "from": "[email protected]",
      "to": "[email protected]",
      "body": "a",
      "subject": "a",
    },
    ...
  ]
}

Email validity check


Request
GET https://api.voids.top/mail/check/[email protected]
Host: api.voids.top
Response
{
  "valid": true, // bool
  "reach_level": "safe"
}