All SnapValid API requests follow a standard REST URL structure.
Base URL
General Request Format
https://{hostname}/{api-version}/{endpoint}?{query_parameters}
URL Components
| Component | Description |
|---|---|
| hostname | app.snapvalid.com |
| api-version | v1 |
| endpoint | The API method you are calling (e.g. verify) |
| query_parameters | Authentication and request parameters |
Example Structure
Parameter Breakdown
| Parameter | Required | Description |
|---|---|---|
| apikey | Yes | Your SnapValid API key |
| Yes | Email address to validate |
Important Notes
- All requests must use HTTPS
- Replace
YOUR_API_KEYwith your actual API key - Query parameter names may vary (
apikeyvsapi_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.
