> ## Documentation Index
> Fetch the complete documentation index at: https://docs.conare.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrations

> Six first-class connectors — Notion, Granola, GitHub, Slack, Gmail, Twenty CRM — plus a live catalog of 200 more sources end users can connect.

End users connect the tools they already use, and their memory fills itself. Each connected source syncs into its own [container](/platform/concepts#containers), so one source can be disconnected — and its memories deleted — without touching the rest.

## First-class connectors

Six connectors with tuned, purpose-built pipelines. The sync scheduler ticks **every 5 minutes**; per-connector cadence within that tick:

| Connector      | Connect flow             | Sync cadence                                                          | Available on            |
| -------------- | ------------------------ | --------------------------------------------------------------------- | ----------------------- |
| **Notion**     | OAuth                    | Every 5 min, incremental                                              | Conare dashboard        |
| **Granola**    | OAuth                    | Every 5 min, incremental                                              | Conare dashboard        |
| **GitHub**     | In-dashboard repo picker | Every 5 min, incremental                                              | Conare dashboard        |
| **Slack**      | Hosted consent link      | Hourly (quota-capped), plus on-demand                                 | Dashboard + partner API |
| **Gmail**      | Hosted consent link      | Every 5 min, incremental via rolling cutoff; 24-month backfill window | Dashboard + partner API |
| **Twenty CRM** | Instance URL + API key   | Real-time via webhooks, plus 5-min polls                              | Dashboard + partner API |

"Incremental" is literal: after the initial import, each run pulls only changes since the last sync, and re-syncs dedupe server-side.

## The catalog: 200 more sources

Beyond the first-class six, `GET /api/v1/connectors/catalog` lists every source type an end user can connect through the hosted consent flow — fetched live from the connector plane, so new sources appear with zero Conare changes. Catalog sources sync every 5-minute tick, guarded by a 30-minute in-flight limit per running sync; effective freshness is max(5 min, sync duration).

<Accordion title="All 200 catalog sources (live snapshot, 2026-07-29 — the API is the source of truth)">
  Affinity, Airtable, Amazon Keyspaces, Amazon Selling Partner, Amplemarket, Amplitude, Anrok, Apollo.io, App Store Connect, Apple Ads, Asana, Ascend, Ashby, Attio, Autumn, Autura, AWS Athena, AWS OpenSearch, Azure Blob Storage, Azure Cosmos DB, Azure SQL, Azure Synapse, Barbour ABI, Baseten, CallRail, Campfire, Chargebee, Chili Piper, Chorus, Circle, Clari Copilot, Clazar, Clerk, ClickHouse, Cloudflare Logs, Cloudflare R2, CloudTalk, Construct Connect, ConstructionWire, CSV URL, Customer.io Warehouse Exports, Databricks, Dayforce, DealCloud, Delighted, Dialpad, Docker Hub, Dropbox, Dub, DynamoDB, Facebook Ads, Factors.ai, Fathom, Fireflies.ai, Freshdesk, Freshservice, Front, Fullstory, G2, Gainsight CS, Gatsby, GitHub, Gladly, Gmail, Gong, Google Ads, Google Analytics, Google BigQuery, Google Cloud MySQL, Google Cloud PostgreSQL, Google Cloud Storage, Google Search Console, Google Sheets, Google Slides, Google Workspace, Gorgias, Greenhouse, Harmonic, Heron Data, HeyReach, HighLevel, Highspot, HTTP API, HubSpot, Hyperline, Instantly, Intercom, Ironclad, Iterable, Jira, Juro, Klaviyo, Knock, Kustomer, Lago, LearnWorlds, Linear, LinkedIn Ads, LinkedIn Company Pages, Loop, Luma, m3ter, MailerCheck, Marketo, Microsoft Ads, Microsoft SharePoint Excel, Microsoft SQL Server, Mixpanel, monday.com, MongoDB, MotherDuck, MySQL, n8n, NetSuite, NetSuite OpenAir, NetSuite SuiteAnalytics, Northbeam, Notion, OpenAI Ads, Outreach, Pardot, PartnerPage, Paycor, Pipedrive, Plain, PlanetScale Vitess, PlusVibe, Podscribe, Polytomic Metadata, PostgreSQL, PostHog, PredictLeads, Productboard, Profound, Pylon, QtaniumConnect, Qualtrics, QuickBooks, Ramp, Recharge, Reddit Ads, Redshift, Redshift Serverless, Reo.dev, Reply, Rewardful, Rillet, Rippling, Rocketlane, S3, Sage Intacct, Salesbricks, Salesforce, Salesloft, ScyllaDB, Seal Subscriptions, Seismic, SFTP, ShipBob, Shippo, Shopify, Short.io, Showpad, Slack, Smartlead.ai, Smartsheet, Snowflake, Sprig, Standard Metrics, Statsig, Stord, Strackr, Stripe, SurveyMonkey, Survicate, Tabs, TestRail, Thrive, Tigris, TikTok Ads, Tixr, Towbook, Typeform, Unbounce, Upfluence, UpPromote, UserVoice, Vanilla Forums, Walmart Marketplace, Ware2Go, Wavelength, WorkOS, Xero, Yotpo, YouTube Analytics, Zendesk Chat, Zendesk Support, Zoho CRM, Zoho Desk, ZoomInfo
</Accordion>

## Connecting users via the API

```bash theme={null}
# 1. Mint a hosted OAuth connect link for your end user
curl https://api.conare.ai/api/v1/connectors/link \
  -H "Authorization: Bearer $CONARE_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "endUserId": "u_123", "type": "slack" }'

# 2. (Credential-flow sources) connect directly
curl https://api.conare.ai/api/v1/connectors/twenty \
  -H "Authorization: Bearer $CONARE_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "endUserId": "u_123", "instanceUrl": "...", "apiKey": "..." }'

# 3. Trigger a sync now
curl https://api.conare.ai/api/v1/connectors/sync \
  -H "Authorization: Bearer $CONARE_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "endUserId": "u_123", "type": "slack" }'
```

## Scoping

Pass `objects` at connect time and `collections` at sync time to control exactly what flows in. Scope persists on the connection and can be read back via `GET /api/v1/connectors/{type}/collections`; an unknown ID returns a `400` listing the valid IDs.

## Disconnecting

`DELETE /api/v1/connectors/{type}` revokes access **and** deletes that source's indexed memories for the user.

Full request/response shapes: [Connectors API reference](/api-reference).
