Aquant Conversation Platform (VoiceAI) API

The Aquant Conversation Platform (ACP) API powers Voice AI and web chat with Aquant's service agents. Clients exchange an API key and secret for a one-hour access token at POST /acp/token, then start WebRTC voice calls with the named agent or stream web-chat replies as Server-Sent Events from POST /vss/web-chat. The public OpenAPI document at /openapi.json currently describes only the liveness and readiness probes; the ACP and VSS routes are live and documented in the first-party @aquantinc/acp-web-sdk browser SDK rather than in the served spec.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/acp-voiceai"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aquant-voiceai-api-openapi.json Raw ↑
{"openapi":"3.1.0","info":{"title":"FastAPI","version":"0.1.0"},"paths":{"/health/live":{"get":{"summary":"Liveness","description":"Liveness probe - returns 200 if the process is running.","operationId":"liveness_health_live_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/health/ready":{"get":{"summary":"Readiness","description":"Readiness probe - checks DB and Redis before accepting traffic.\n\nSync def (not async) so FastAPI runs it in a threadpool — the SQLAlchemy\nand redis-py clients are blocking, and running them in an async handler\nwould stall the event loop and any in-flight WebSocket sessions.","operationId":"readiness_health_ready_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}}}}