Connect Adrata to everything.
Native integrations for your CRM, warehouse, and automation tools. No code required. Intelligence flows where you need it.
CRM & Sales Engagement
Sync intelligence to your sales tools. Scores, tiers, and buyer groups, right where your team works.
Salesforce
Bidirectional sync with score pushback to custom fields.
- Account & Contact sync
- Score pushback
- Custom field mapping
HubSpot
Full CRM sync with company and contact intelligence.
- Company & Contact sync
- Deal association
- Custom properties
Outreach
Sync prospects and engagement data.
- Prospect sync
- Sequence triggers
- Engagement tracking
SalesLoft
Connect cadences with intelligence signals.
- Cadence triggers
- Contact sync
- Activity tracking
Data Warehouse
Export to your warehouse or import audiences. Warehouse-native architecture for composable GTM.
Snowflake
Native connector for bidirectional warehouse sync.
- Full export
- Incremental sync
- Delta/CDC
BigQuery
Direct integration with Google BigQuery.
- Streaming inserts
- Scheduled exports
- Query federation
Databricks
Lakehouse integration for unified analytics.
- Delta Lake support
- Unity Catalog
- ML pipelines
Redshift
AWS Redshift data warehouse connector.
- Bulk export
- Scheduled sync
- Spectrum support
Automation & iPaaS
Trigger workflows when intelligence changes. Build automations without code.
Make
Visual automation with Adrata modules.
- Custom modules
- Scenario triggers
- Data transformation
Workato
Enterprise-grade automation connector.
- Certified connector
- Enterprise recipes
- Governance
n8n
Open-source workflow automation.
- Community node
- Self-hosted
- Custom workflows
AI & Agent Platforms
Connect Adrata to your AI assistant. MCP for Claude, function schemas for GPT, tools for agents.
Claude (MCP)
Model Context Protocol server for Claude Desktop & Cursor.
- Sales intelligence tools
- Company resources
- Natural language queries
OpenAI Functions
Function calling schemas for GPT models.
- Function definitions
- Tool schemas
- Chat completions
LangChain
LangChain tool wrappers and agents.
- Tool wrappers
- Agent integration
- Chain support
Composio
AI agent tool orchestration.
- Managed OAuth
- 500+ tools
- Agent actions
Data Partners
Works with leading data orchestration platforms for enterprise data workflows.
Hightouch
Reverse ETL partner for warehouse activation.
- Sync from warehouse
- Audience builder
- Real-time
Fivetran
ETL connector for Adrata data extraction.
- Source connector
- Automatic schema
- Incremental
Airbyte
Open-source data integration.
- Community connector
- Self-hosted
- ELT pipelines
Build your own integration
Full REST API, TypeScript and Python SDKs, comprehensive webhooks. Build anything you can imagine, or let AI build it for you.
import { AdrataClient } from '@adrata/sdk';
const adrata = new AdrataClient({
apiKey: process.env.ADRATA_API_KEY
});
// Score a company
const score = await adrata.intelligence
.scoreCompany({ domain: 'stripe.com' });
// Find the buying committee
const buyers = await adrata.intelligence
.findBuyerGroup({ companyId: score.id });
console.log(`Tier: ${score.tier}`);