Products
/
/
Geocoding
Proprietary Infrastructure
Convert addresses
to coordinates.
At any scale.
Placematic Geocoding API converts US and global addresses to precise geographic coordinates — with batch processing, real-time autocomplete, and reverse geocoding. Built on Placematic's own spatial infrastructure.
300M+
global addresses · 190+ countries
Batch
processing — up to millions per job
<100ms
response for single requests
geocode.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
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
POST /v1/geocode HTTP/1.1
Host: "geocode.placematic.io"
Authorization: "Bearer pk_live_••••"
Content-Type: "application/json"
{
"address": "1600 Golf Rd, Rolling Meadows, IL 60008",
"country": "US"
}
← 200 OK · application/json
{
"address": "1600 Golf Rd, Rolling Meadows, IL 60008",
"location": {
"lat": 42.0412,
"lng": -88.0194
},
"accuracy": "rooftop",
"confidence": 0.99,
"response_time_ms": 42
}