<aside> 🤘
Here you’ll learn how easy it is to handle installers
</aside>
You can create new orders and retrieve existing orders via the API.
<aside> 💡
Some of our customers use these APIs to filter Installers in their own webpages based on coordinates
</aside>
To list all installers, send a GET request with pagination
fetch("<https://api.installer.com/docs#tag/v1/GET/api/v1/partners/installers>", {
method: "GET",
headers: {
"Authorization": Bearer ${apiKey},
"Content-Type": "application/json"
},
})
Example response:
{
"values": [
{
"id": "string",
"name": "string",
"professions": [
"ELECTRICIAN"
],
"services": [
"EV_CHARGERS"
],
"tags": [
{
"id": "string",
"name": "string"
}
],
"coordinates": {
"latitude": 1,
"longitude": 1
},
"countryCode": null,
"city": null,
"postalCode": null,
"address": null,
"contactPerson": {
"firstName": "string",
"lastName": "string",
"email": "string",
"phoneNumber": null
}
}
],
"count": 1
}
You can expand the search by adding params: