Validate an address and get back its correctly formatted version, including its geo-coordinates.
Same engine and response shape as the API. Pick a country, enter an address, and see exactly how we'd match it — no account needed for this quick check.
No account, no card. Up to 12 checks per day from this browser (register to get more). Addresses you submit here are kept for up to 90 days for internal purposes (improving address matching and our reference data), then permanently deleted — see our Privacy Policy for details. UK addresses are served from our dedicated Royal Mail PAF endpoint — see UK Address Validation.
One endpoint, one address.
Send a freeform string or pre-split components. Acuris parses, normalizes, and verifies against authoritative postal sources.
- Component-level breakdown (street, postcode, locality, country)
- Deliverability flag & mailability score
- Normalized output ready for storage
- Confidence score on every field
- ISO-3166 country normalization
$ curl https://api.acuris-geo.com/v1/validate \
-H "Authorization: Bearer $ACURIS_KEY" \
-H "Content-Type: application/json" \
-d '{"address":"Schönhauser Allee 36, Berlin","country":"deu"}'
{
"status": "verified",
"deliverable": true,
"match_type": "rooftop",
"accuracy_type": "rooftop",
"confidence": 1.0,
"confidence_level": "high",
"lat": 52.538189,
"lng": 13.412664,
"standardized": {
"street": "Schönhauser Allee",
"house_number": "36",
"postcode": "10435",
"city": "Berlin",
"country": "deu",
"formatted_address": "Schönhauser Allee 36\n10435 Berlin\nGERMANY"
},
"corrections": []
}
Every field, explained.
The one-line verdict: verified, corrected, partial or no_match.
How closely the result matches what you sent in (also returned as confidence).
Precision tier behind the coordinate — rooftop, street-level or postcode-centroid (also returned as accuracy_type).
Whether mail can physically be delivered to this address today.
Which parts of the input were auto-corrected — typos, abbreviations, missing pieces.
Your input broken into street, house number, postcode, city, state/region and country.
The corrected, canonical address — including a ready-to-print formatted_address.
Per-field true/false: which parts of your input actually matched reference data.
A separate entrance/access-point coordinate, when it differs from the rooftop centroid.