Endpoint: api/domains/{apiKey}/{type}
Method: GET
Parameters:
apiKey
- Your API key.type
- Type of domains to fetch (free, premium, all).Example Request:
GET api/domains/your-api-key/all
Example Response:
{
"status": true,
"data": {
"domains": [
{
"domain": "free.com",
"type": "Free"
},
{
"domain": "lobage.com",
"type": "Free"
},
{
"domain": "premium.com",
"type": "Premium"
}
]
}
}
Endpoint: api/emails/{apiKey}
Method: POST
Parameters:
apiKey
- Your API key.Example Request:
POST api/emails/your-api-key
Example Response:
{
"status": true,
"data": {
"email": "random@example.com",
"domain": "example.com",
"ip": "127.0.0.1",
"fingerprint": "eef780ab2ec7535e66c1405c0bff1c64",
"expire_at": "2025-01-01T00:00:00.000000Z",
"created_at": "2025-01-01T00:00:00.000000Z",
"id": 1,
"email_token": "email_token"
}
}