Requests - URL Formats

All SnapValid API requests follow a standard REST URL structure.

Base URL

https://app.snapvalid.com


General Request Format

https://{hostname}/{api-version}/{endpoint}?{query_parameters}


URL Components

ComponentDescription
hostnameapp.snapvalid.com
api-versionv1
endpointThe API method you are calling (e.g. verify)
query_parametersAuthentication and request parameters

Example Structure

https://app.snapvalid.com/api/v1/verify?apikey=YOUR_API_KEY&email=[[email protected]](mailto:[email protected])


Parameter Breakdown

ParameterRequiredDescription
apikeyYesYour SnapValid API key
emailYesEmail address to validate

Important Notes

  • All requests must use HTTPS
  • Replace YOUR_API_KEY with your actual API key
  • Query parameter names may vary (apikey vs api_key) depending on the endpoint
  • Email addresses must be properly URL encoded

Example (URL encoded email):

email=test%40example.com


Authentication Reminder

Your API key is currently passed via query string:

?apikey=YOUR_API_KEY

⚠ For security reasons, avoid exposing your API key in frontend applications.