API Documentation for `/api/pro`

Introduction

The `/api/pro` endpoint allows users to validate an email and get back its status (valid or invalid) while tracking the user's credits. You need to pass the following headers and query parameters to interact with the API. To get your API Key, head to Dashboard

API Endpoint

POST /api/pro

Headers

api_token: Your_API_Token
api_key: Your_API_Key

Query Parameters

email: The email to be validated

Examples

JavaScript (Node.js)

const axios = require('axios');

axios.post('/api/pro', null, {
  headers: {
    api_token: 'your_api_token',
    api_key: 'your_api_key'
  },
  params: {
    email: 'test@example.com'
  }
})
.then(response => {
  console.log(response.data);
})
.catch(error => {
  console.error(error);
});

React

import axios from 'axios';

const validateEmail = async () => {
  try {
    const response = await axios.post('/api/pro', null, {
      headers: {
        api_token: 'your_api_token',
        api_key: 'your_api_key'
      },
      params: {
        email: 'test@example.com'
      }
    });
    console.log(response.data);
  } catch (error) {
    console.error(error);
  }
};

validateEmail();

PHP

<?php
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "/api/pro?email=test@example.com");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  'api_token: your_api_token',
  'api_key: your_api_key'
));

$response = curl_exec($ch);
if (curl_errno($ch)) {
  echo 'Error:' . curl_error($ch);
} else {
  echo $response;
}

curl_close($ch);
?>

Curl

curl -X POST "/api/pro?email=test@example.com" \
-H "api_token: your_api_token" \
-H "api_key: your_api_key"

Response Example

{
  "email": "test@example.com",
  "status": "valid"
}

Error Responses

{
  "error": "Invalid email"
}

If you have any more queries, please refer to our FAQs.