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
- Get an API key with the
iq:importscope - Push your data to the Ingestion API
- Reaktly processes it — normalization, embedding, indexing
- AI uses it to answer visitor questions
Choose Your Path
Ingestion API
Push data from any source via REST API
Shopify
Sync products automatically
WordPress
Import posts and pages
Payload CMS
Connect your Payload content
Custom Connector
Build your own integration
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..."
}
}'