apyhub
Back

Student & Academic Email Verification API

Hosted on ApyHub

What it does

The Academic Email Verification API tells you whether an email address belongs to a university, college, or other academic institution. Send an email address and get back true or false.

Use it to offer student and teacher discounts, give free or reduced plans to academic users, or limit a sign-up flow to people from educational institutions. Because it's a single, fast check, you can run it the moment someone types their email, before asking for any further proof.

The API checks the email's domain, so it confirms the address comes from an academic institution but not that the mailbox exists or that the person is currently a student. To make sure the address can actually receive email, combine it with the Validate Email DNS API or send a confirmation link.

You can start on ApyHub's free tier with no card required.

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

QUICKSTART

GUIDE

Quickstart

Check whether an email belongs to an ACA by sending a single email address.

curl -X POST "https://api.eu.apyhub.com/apyhub/check-whether-an-email-belongs-to-an-academic" \
  -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 if the email belongs to an ACA, 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 a valid email format.

Response

Returns a JSON object with a data boolean field.

ParameterTypeMandatoryDescription
dataBooleanNotrue if the email belongs to an academic institution, false otherwise.

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.