Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Analytics / AlisQI API
AlisQI API logo

AlisQI API

Agent-ready OpenAPI document · curated by JenticAnalyticsBusiness Intelligencebearer, apiKey10 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Read and write quality management data in AlisQI - fetch lab results and statistics, push new measurements, and manage specification versions for a tenant.

Use for: I need to push a batch of lab measurements into AlisQI, Retrieve descriptive statistics for a specific analysis set, List all analysis sets available in the tenant, Get the field definition of a specification list before writing to it

Not supported: Does not handle ERP transactions, document management, or production scheduling - use for quality measurement capture and SPC statistics only.

Jentic publishes the only available OpenAPI specification for AlisQI API, keeping it validated and agent-ready. AlisQI is a quality management platform for manufacturers, and its API exposes analysis sets, lab results, specification versions, and capability statistics for tenant-specific deployments. Programs can pull descriptive statistics, push new lab results, define specification versions, and manage permissions on analysis sets. The API uses a tenant subdomain in the base URL and supports either bearer token or query-parameter access tokens.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the AlisQI API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the AlisQI API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Falisqi.com%2Falisqi" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Falisqi.com%2Falisqi" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with AlisQI API.

Fetch results and master data from a named analysis set with filtering

Submit new or updated lab results into AlisQI in batch via storeResults

Retrieve descriptive and capability statistics for analysis set fields

Create new specification versions and read existing version history

Inspect the field structure of an analysis set or selection list

Provision new analysis sets and assign permissions to users or groups

Use Cases

Patterns agents use AlisQI API for, with concrete tasks.

★ Automated lab result ingestion

Push readings from inline sensors or LIMS exports straight into AlisQI by calling storeResults with the analysis set name and a batch of records. The API accepts master data alongside results, so production parameters and measurements land in the same payload. Typical integration takes hours rather than days because the spec is small and there is one write endpoint to learn.

Call POST /storeResults with analysis set name 'Tablet_Hardness' and a batch of 200 records, then verify success by reading back via GET /getResults filtered to the same time window.

Statistical process control reporting

Pull descriptive and capability statistics for chosen analysis set fields to feed dashboards or daily reports. The getStatistics and getSpecificationEvaluation endpoints return summary values directly, so callers do not need to recompute Cp and Cpk locally. This is the fastest path to wire AlisQI quality data into an external BI tool.

Call GET /getSpecificationEvaluation for analysis set 'Coating_Thickness' over the last 30 days and post the Cpk values into a Slack channel.

Specification version management

Create and retrieve specification versions when a product engineering change rolls out, so historical results are evaluated against the spec that applied at the time. The API exposes both read and write endpoints for versions, which avoids manual edits in the AlisQI UI when releases happen on a regular cadence.

Call POST /storeSpecificationVersion to create a new version 'v2.3' for analysis set 'Bottle_Weight' with updated upper and lower limits.

AI agent quality monitoring

An AI agent can poll AlisQI on a schedule, pull fresh statistics for critical analysis sets, and raise an incident when capability indices drop below a threshold. Through Jentic the agent searches for the read operation by intent, loads the input schema, and executes - credentials never enter the prompt context. This converts a static dashboard into a proactive quality watch.

Use Jentic to search for 'get capability statistics from AlisQI', load the input schema, and call GET /getSpecificationEvaluation for the configured analysis set; if Cpk is below 1.33, file an incident.

Key Endpoints

10 endpoints — jentic publishes the only available openapi specification for alisqi api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/getResults

Fetch results or master data for an analysis set

POST

/storeResults

Create or update results in batch

GET

/getStatistics

Descriptive statistics for analysis set fields

GET

/getSpecificationEvaluation

Capability statistics for analysis set fields

GET

/getAllSets

List all analysis sets and selection lists

POST

/createSet

Create a new analysis set or selection list

POST

/storeSpecificationVersion

Create a new specification version

GET

/getResults

Fetch results or master data for an analysis set

POST

/storeResults

Create or update results in batch

GET

/getStatistics

Descriptive statistics for analysis set fields

GET

/getSpecificationEvaluation

Capability statistics for analysis set fields

GET

/getAllSets

List all analysis sets and selection lists

POST

/createSet

Create a new analysis set or selection list

POST

/storeSpecificationVersion

Create a new specification version

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring AlisQI by hand means setting up its bearer API token, filling in the {subdomain}.alisqi.com tenant host, and encoding result capture and statistics reads yourself. Through Jentic you install once, import the AlisQI API from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

AlisQI carries its result set and specification targets in query and body parameters rather than as path resources, so limit the agent to the operations it needs, such as getResults or getStatistics. You choose the operations it may call, so storeResults or createSet are not included unless you add them.

Credential management

Credential isolation

Your AlisQI API token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'read quality measurement results' or 'get SPC statistics', and Jentic returns the matching AlisQI operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Clockify

→

Time tracking on the shop floor often pairs with quality data capture

Use Clockify when you need to attach who recorded a measurement and how long the operation took, alongside the AlisQI quality reading

Complementary

Samsara

→

Samsara provides industrial sensor and asset telemetry that can feed quality systems

Use Samsara when the quality measurement originates from connected industrial equipment and AlisQI is the quality system of record

Complementary

BambooHR

→

Pair operator records with HR identity and team data

Use BambooHR when an AlisQI quality report needs to attribute readings to a specific operator's HR record

FAQs

Specific to using AlisQI API through Jentic.

Why is there no official OpenAPI spec for AlisQI API?

AlisQI does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AlisQI API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the AlisQI API use?

AlisQI accepts a bearer API token via the standard Authorization header, or an access_token query parameter for environments where headers cannot be set. Through Jentic, the token is stored in the encrypted vault and injected at call time, so it never appears in agent prompts.

Can I push batches of lab results to the AlisQI API?

Yes. POST /storeResults accepts a batch of records bound to a named analysis set and creates or updates them in one call. Master data records can be sent alongside measurements in the same request body.

How do I retrieve Cpk values via the AlisQI API through Jentic?

Search Jentic for 'capability statistics from AlisQI', load the input schema for GET /getSpecificationEvaluation, and execute with the analysis set name. Jentic returns the capability indices directly so the agent does not have to recompute them.

Does the AlisQI API require a tenant subdomain?

Yes. The base URL is https://{subdomain}.alisqi.com/api where {subdomain} is the customer tenant. The subdomain must be configured in the request before calls can resolve.

Can I create new analysis sets via the API?

Yes. POST /createSet provisions a new analysis set or selection list, and POST /storeSetPermissions assigns access to users or groups. This is useful when onboarding a new product line programmatically.

Can I limit what my agent is allowed to do with the AlisQI API?

Yes. Because you run Jentic One yourself, your own rules decide which AlisQI operations and credentials the agent may use, so you can restrict it to read-only calls like getResults and getStatistics. AlisQI carries its analysis set and specification targets in query and body parameters rather than as path resources, so scoping is done per operation: write operations such as storeResults, createSet, and storeSpecificationVersion are not available to the agent unless you explicitly add them. The API token stays with your instance and is injected at call time, so the agent only exercises the operations you granted.

GET STARTED

Start building with AlisQI API

Explore with Jentic One
View OpenAPI Document