Skip to content

ephraimduncan/disposable-email-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Is-Disposable-Email API

This API allows you to check if an email address is from a disposable email service.

https://is-disposable-email.ephraimduncan68.workers.dev/

Development

Clone the repository

git clone https://github.com/dephraiim/disposable-email-api.git
cd disposable-email-api
pnpm install
pnpm run dev

Deploy to Cloudflare Workers

pnpm run deploy

Usage

Endpoints

GET /
POST /

GET /

This endpoint returns information about the API.

Response:

{
  "name": "is-disposable-email",
  "version": "1.0.0"
}

POST /

This endpoint checks if an email address is disposable.

Request Body:

{
  "email": "your_email_address@example.com"
}

Response:

{
  "email": "your_email_address@example.com",
  "isDisposable": true|false,
  "isAllowedList": true|false,
  "status": "success",
  "message": "Email is from a disposable email service",
  "timestamp": "2023-12-08T20:42:00.000Z"
}

Response Codes:

  • 200: The request was successful.
  • 400: The request was invalid.
  • 500: An internal server error occurred.

Example Usage

curl -X POST -H "Content-Type: application/json" -d '{"email": "test@example.com"}' https://is-disposable-email.ephraimduncan68.workers.dev/

Releases

No releases published

Packages

No packages published