apyhub
DATA VALIDATION

Validate Academic Email API

What it does

Academic Email Validator checks whether an email address belongs to an academic institution. Send an email in the request body, and it returns a boolean data value indicating the result.

Use it when you need to gate access to student or faculty offers, qualify education-only signups, or reduce manual review in forms that should be limited to academic users. The response is intentionally simple, so you can plug it into signup flows, eligibility checks, and fraud-prevention rules without parsing extra metadata.

Academic Email Validator is a fit for applications that only need a yes-or-no answer. Because the schema accepts a single email field and returns a boolean, it is easy to add to existing validation pipelines, enrollment checks, and lead filters.

If your product needs to confirm academic affiliation before allowing access, this endpoint gives you a direct validation signal from just the email address.

POST
Check whether an email belongs to an academic institution
https://api.eu.apyverse.com/apyhub/validate-academic-email

QUICKSTART

GUIDE

Quickstart

Check whether an email address belongs to an academic domain.

curl -X POST "https://api.eu.apyverse.com/apyhub/validate-academic-email" \
  -H "apy-token: $APY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email":"[email protected]"}'

What you'll get back

Returns a JSON object with a data boolean field — true when the email is academic, false otherwise.

{
  "data": true
}
TRY ITLIVE · 15 ATOMS
Loading your default key…
The full key is used to call the gateway and stays in this tab — never sent to orbit or saved.
body*

About this endpoint

What it does

Checks whether the submitted email address belongs to an academic institution and returns the result as a boolean.

Request Body

ParameterTypeMandatoryDescription
emailStringYesEmail address to check. Must be in email format.

Response

Returns a JSON object with a data boolean field. true indicates the email belongs to an academic institution; false indicates it does not.

ParameterTypeMandatoryDescription
dataBooleanNoBoolean result of the academic email check.

Body

Name
Type
Description
bodyREQUIRED
object
▣ COMMON ERRORS

Errors any endpoint can return

400bad_request

Required parameter missing or malformed body.

401unauthorized

API key missing, revoked, or not authorized for this service.

429rate_limited

Your plan's per-second rate exceeded. Retry with exponential backoff.

503upstream_busy

Backend temporarily unavailable. Try again in a few seconds.