Authentication
Authentication is required with every API request by sending a header with your unique Access Token.
Last updated
Authentication is required with every API request by sending a header with your unique Access Token.
Last updated
© Interloop Technologies, Inc. All Rights Reserved.
To acquire an access token, send a POST request with your your username & password to:
POST
https://api.interloopdata.com/login
Login with your Username & Password to acquire an access token.
Body
Name | Type | Description |
---|---|---|
Response
Copy the token
provided in the response to be used in Step 2.
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:
GET
https://api.interloopdata.com/monitors
Returns a list of all Monitors.
Headers
Response
Name | Value |
---|---|
Congratulations! You have successfully retrieved data using the Interloop API.
username
string
Your username (likely your email address)
password
string
Your password (as plain text)
Content-Type
application/json
Authorization
Bearer <token>