<aside> 🤘

Here you’ll learn how to authenticate your API requests. Ensure to have access to your organisation before doing authentication.

</aside>

Creating an API Key

To start using the API, you need an API key. Head over to Proptly API Key Settings and create a new key: https://routing.installer.com/settings/api-keys

<aside> 💡

Make sure you’re an Admin – only Admins can generate API keys!

• You can create as many API keys as needed.

• It’s recommended to generate separate test and production keys.

• This token will be used as a Bearer token in API requests (see below).

</aside>

Using the API Key

Here’s an example of how you can include the key in your API requests

fetch("<https://routing-api.installer.com/api/integration/order/{orderID}>", {
	method: "GET",
	headers: {
	"Authorization": Bearer ${apiKey},
	"Content-Type": "application/json"
	}
})

That’s it! You’re ready to authenticate and start making API calls. 🚀