Universal API Integration

775+ Data Connectors.
One Interface.

Connect any API in seconds. Stripe, Gmail, Notion, Slack, GitHub, Jira, HubSpot, Salesforce, and 767 more.

775+
Connectors
9
Categories
3
Auth Types
A-F
Quality Grades

Every Category Covered

From payments to analytics, your agents connect to the tools your business runs on.

Payment

45+

Stripe, PayPal, Square, Braintree, Paddle, LemonSqueezy, Razorpay, and more.

CRM

60+

Salesforce, HubSpot, Pipedrive, Zoho CRM, Freshsales, Close, Copper, and more.

Communication

50+

Slack, Discord, Telegram, WhatsApp, Twilio, SendGrid, Intercom, and more.

Cloud

80+

AWS, GCP, Azure, Cloudflare, DigitalOcean, Vercel, Netlify, Fly.io, and more.

Database

40+

PostgreSQL, MongoDB, Redis, MySQL, DynamoDB, Supabase, PlanetScale, and more.

Developer

70+

GitHub, GitLab, Jira, Linear, Bitbucket, CircleCI, Sentry, PagerDuty, and more.

Marketing

55+

Mailchimp, SendGrid, ConvertKit, ActiveCampaign, Brevo, Klaviyo, and more.

Analytics

35+

Google Analytics 4, Mixpanel, Amplitude, PostHog, Plausible, Heap, and more.

340+

More connectors across productivity, storage, e-commerce, HR, legal, and other categories.

Built for Reliability

Every connector is graded, monitored, and battle-tested.

Multiple Auth Types

Bearer tokens, OAuth2 flows, and API key authentication. Each connector declares its required auth type.

Auto Pagination

Cursor, offset, and page-based pagination handled automatically. Agents get complete datasets without manual loops.

Rate Limit Handling

Automatic backoff and retry logic respects API rate limits. No failed requests, no bans.

Health Monitoring

Continuous health checks track uptime and response times. Alerts fire when a connector degrades.

Quality Grading

Every connector receives an A-F quality grade based on documentation coverage, test results, and reliability metrics.

Verified Provenance

Every connector tracks its source: official docs, open-source repos, or community contributions. No synthetic data.

Add a Connector in One JSON File

Every connector follows a standard schema. Define the API, auth, and endpoints.

// connectors/stripe.json
{
  "name": "stripe",
  "display_name": "Stripe",
  "category": "payment",
  "base_url": "https://api.stripe.com/v1",
  "auth_type": "bearer",
  "docs_url": "https://stripe.com/docs/api",
  "endpoints": [
    {
      "method": "GET",
      "path": "/charges",
      "description": "List all charges"
    },
    {
      "method": "POST",
      "path": "/charges",
      "description": "Create a charge"
    }
  ],
  "quality_grade": "A",
  "provenance": "official-docs"
}

Connect Everything

Open-source connector registry. Contribute your own or use community connectors.