Integrate without effort
You can start completing directions within minutes. No matter your framework.
1const key = process.env.SIMPLE_ADDRESSES_KEY;
2const search = "example search";
3
4const response = await fetch(
5 "https://api.simpleaddresses.com/v1/autocomplete",
6 {
7 method: "GET",
8 headers: {
9 "Content-Type": "application/json",
10 "KEY": key,
11 },
12});