Authentication
Authentication is required with every API request by sending a header with your unique Access Token.
Step 1: Acquire An Access Token
To acquire an access token, send a POST request with your your username & password to:
Create a new user
POST
https://api.interloopdata.com/login
Login with your Username & Password to acquire an access token.
Body
Name | Type | Description |
---|---|---|
| string | Your username (likely your email address) |
| string | Your password (as plain text) |
Response
Copy the token
provided in the response to be used in Step 2.
Step 2: Authenticate Your Requests
To make an authenticated request to your Interloop instance. Please include an Authorization
header with your HTTP request with the following format Bearer <Token>
For instance, to return a list of Monitors from the Interloop API. You would make the following API CAll:
Find All Monitors
GET
https://api.interloopdata.com/monitors
Returns a list of all Monitors.
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Response
Congratulations! 🎉 You have successfully retrieved data using the Interloop API.
Last updated