Base URL and Authorization
Every API request is made to the base URL https://api.arlinear.com/functions/v1/...
.
The API requires an authorization header with your API key. Below is a JavaScript example of how to structure your request:
fetch("https://api.arlinear.com/functions/v1/<API Endpoint>", {
method: "POST",
headers: {
Authorization: "<Your API Key>", // Keep this API key a secret!
},
body: ...
});
Last updated