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

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 and remove as many keys 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 HTTP Basic Authentication. Provide your API key as the basic auth username value. You do not need to provide a password. You can do this using the -u flag if you are using cURL:

$ curl https://api.intenseye.com/workspaces \
-u INTENSEYE_API_KEY:

You must replace INTENSEYE_API_KEY with your personal API key.