Docs
DataForge
DataForge
9-in-1 data validation API covering phone, email, IBAN, credit card, VAT, postal code, date conversion, password analysis, and crypto addresses.
Overview
DataForge consolidates nine data validation utilities into a single API. Validate and normalize common data formats across global standards with one integration.
Base URL: https://api.apivult.com/v1/dev/validate
Authentication
Include your API key in every request header: X-API-Key: YOUR_API_KEY
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/dev/validate/phone/validate | Validate and normalize phone numbers |
| POST | /v1/dev/validate/email/validate | Check email format and deliverability |
| POST | /v1/dev/validate/iban/validate | Validate IBAN bank account numbers |
| POST | /v1/dev/validate/creditcard/validate | Validate credit card numbers (Luhn check) |
| POST | /v1/dev/validate/vat/validate | Validate EU VAT registration numbers |
| POST | /v1/dev/validate/postalcode/validate | Validate postal codes by country |
| POST | /v1/dev/validate/date/convert | Parse and convert date formats |
| POST | /v1/dev/validate/password/analyze | Analyze password strength and entropy |
| POST | /v1/dev/validate/crypto/validate | Validate BTC, ETH, and other crypto addresses |
Quick Start
curl -X POST "https://api.apivult.com/v1/dev/validate/email/validate" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'Response:
{
"valid": true,
"format": "valid",
"domain": "example.com",
"disposable": false,
"mx_records": true
}Rate Limits
| Plan | Requests/Month |
|---|---|
| Free | 500 |
| Basic | 10,000 |
| Pro | 100,000 |