Hero

Welcome to Qontext

Qontext is a unified context layer that turns scattered company data into AI-ready context. It organizes data from the tools a company already uses into use-case-specific Context Vaults and provides the company’s AI processes with the exact context they need.

How to use it?

We provide an easy to use hosted cloud API. Check out the following resources to get started:

API Key

To use the API, you need to sign up to Qontext and get an API key.

Features

  • Ingestion: Connect your data sources in the app or manually ingest text and website data directly with our API.
  • Structuring: We structure your data and build relationships accross all of your inputs.
  • Retrieval: We deliver highly-relevant company context to your workflows. Get it seamlessly in our workflow builder integrations or manually through our API.

Powerful Capabilities

  • Source-agnostic ingestion: plain text, markdown, website content behind a URL, or tools like HubSpot, Notion, Slack through our data connections
  • Highly relevant context retrieval: designed to get the context you need based on a natural language prompt you provide

Ingestion

Bring your company data into Qontext from any source, whether it’s plain text, website content, or connected tools like HubSpot and Notion. We automatically process and prepare your data for intelligent structuring.

Example

cURL
curl --request POST \
  --url https://api.staging.qontext.ai/v1/ingestion/unstructured \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceId": "ws_123e4567-e89b-12d3-a456-426614174000",
  "knowledgeGraphId": "kg-681c0068-b589-4923-ac4a-73040fab7a45",
  "text": "Paris is the capital of France"
}'

Response

Unstructured data ingested successfully

Retrieval

Get precisely the right context for any AI workflow or prompt. Our system intelligently traverses your context vault to deliver highly-relevant company context that powers smarter AI decisions.

Example

cURL
curl --request POST \
  --url https://api.staging.qontext.ai/v1/retrieval \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "workspaceId": "ws_123e4567-e89b-12d3-a456-426614174000",
  "knowledgeGraphId": "kg-681c0068-b589-4923-ac4a-73040fab7a45",
  "prompt": "What is the capital of France?",
  "limit": 5,
  "depth": 1
}'

Response

{
  "summary": "France is a country in Western Europe."
}