API v1.0

Developer API

Integrate Quantiix machine data into your own systems.

Quick Start Guide

Get up and running with the Quantiix API in minutes

1

Prerequisites

Active Quantiix account with API access, valid email and password credentials, and a REST client or programming environment.

2

Get Token

Authenticate with your credentials to obtain a JWT token valid for 24 hours.

3

Start Building

Use the token to access machine info, current state, and activity history endpoints.

Base URL http://developers-api-server.prod.quantiix.ai/api/v1

API 1: Authentication

Get your API token to access all protected endpoints. Token is valid for 24 hours.

Endpoint

POST /api/v1/security/getAPIToken

Request Body

{
  "userEmail": "user@example.com",
  "password": "your_password"
}

Example

curl -X POST "http://developers-api-server.prod.quantiix.ai/api/v1/security/getAPIToken" \
  -H "Content-Type: application/json" \
  -d '{
    "userEmail": "user@example.com",
    "password": "your_password"
  }'

Response

{
  "token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9..."
}
✓ Token received! Next Step: Use this token in the Authorization: Bearer YOUR_TOKEN header for all subsequent requests.

Accessibility