Documentation

Developer documentation for Check365 APIs, SDKs, wrappers, and integrations.

Api Reference

Authentication


All API requests must be authorized using an api_key. Users can generate their api_key from their profile settings. The api_key should be included in the query string of the request URL or in the request body, depending on the endpoint being used.

An api_key must be used to approve all requests. Users can make this key in the settings for their profile.

Check365 offers developer tools for disposable email checkers, validating bulk emails, and protecting frontend forms. Because of this, it's very important to keep your credentials safe. Add your api_key to the following, depending on the endpoint:

The request URL's query string.

The body of the request (JSON or form-data).

Quick Start: Use your key to validate a single email over the API or protect your frontend form with our integration tools.

Example

curl "https://api.check365.io/api/validation/single-email?api_key=YOUR_API_KEY&email=john@example.com"
Previous
Getting Started