Skip to main content

Overview

Intenseye API helps you to integrate your software into Intenseye analytics.

Base URL

All URLs referenced in the API documentation have the following base:

https://api.intenseye.com/v2

This REST API is served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.

API Authentication

Upon creating an account, an API key will be automatically generated for you. You can create as many keys as you like.

Intenseye uses API keys to allow access to the API. You can find your API keys on our dashboard, which you can access by logging in or signing up.

Intenseye expects for the API key to be included in all API requests to the server via Authorization header.If you are using cURL:

$ curl "https://api.intenseye.com/v2/facilities/export?format=CSV" \
-H "Authorization: INTENSEYE_API_KEY"

You must replace INTENSEYE_API_KEY with your API key.