Products
/
/
Address and Search
Proprietary Infrastructure
Real-time address autocomplete and search. For any form, any platform.
Placematic Address and Search API provides real-time address suggestions as users type — reducing input errors, speeding up checkout flows, and delivering validated coordinates instantly. Built on Placematic's own spatial infrastructure.
Single-string & multi-string
search modes
300M+
addresses
Sub-100ms
autocomplete response
autocomplete.http
response.json
▶ Run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
POST /v1/autocomplete HTTP/1.1
Host: "api.placematic.com"
Authorization: "Bearer pk_live_••••"
Content-Type: "application/json"
{
"query": "1600 Golf Rd, Rolling",
"country": "US"
"language": "en"
}
→ Response 38ms · application/json
{
"suggestions": [
{
"label": "1600 Golf Rd, Rolling Meadows, IL 60008",
"lat": 42.0412,
"lng": -88.0194
"confidence": 0.99
}
]
}