Reaktly Docs
Integrations

Integrations

Connect your data sources to power your Reaktly knowledge base.

Reaktly IQ can ingest data from any source — your CMS, database, e-commerce platform, or custom application. Once ingested, your content becomes searchable by the AI assistant.

How Integration Works

  1. Get an API key with the iq:import scope
  2. Push your data to the Ingestion API
  3. Reaktly processes it — normalization, embedding, indexing
  4. AI uses it to answer visitor questions

Choose Your Path

Quick Start

The fastest way to get data into Reaktly:

curl -X POST https://api.reaktly.com/ingest \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "integrationId": "your-integration-id",
    "knowledgeBaseId": "your-kb-id",
    "sourceType": "ARTICLE",
    "externalId": "my-first-article",
    "data": {
      "title": "Getting Started Guide",
      "content": "This is the content that will be searchable by AI..."
    }
  }'

On this page