Parse unstructured address strings into normalized components. Extract street number, street name, street type, city, state, and zip code. Perfect for cleaning address data, validating form inputs, and standardizing shipping information.
{
"status": "ok",
"error": null,
"data": {
"address": "1600 Amphitheatre Parkway, Mountain View, CA 90210",
"parsed": {
"streetNumber": "1600",
"streetType": "Pkwy",
"streetAddress": "Amphitheatre",
"cityName": "Mountain View",
"stateName": "CA",
"zipCode": "90210"
}
}
}






Parse unstructured address strings into normalized components. Extract street number, street name, street type, city, state, and zip code. Perfect for cleaning address data, validating form inputs, and standardizing shipping information.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/streetaddressparser?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ address, parsed, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseParse all addresses into consistent structured components. Normalize street types, standardize formatting, and enable accurate address matching.
Detect when a full address is pasted and automatically populate city, state, and zip fields. Improve form UX while ensuring structured data.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/streetaddressparser?address=1600%20Amphitheatre%20Parkway%2C%20Mountain%20View%2C%20CA%2090210", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog