Skip to main content
List the 54 available integration providers, with category, signal types emitted, and current connection status for the caller’s account. Used to render the integrations catalog and the “connect a source” CTA.
curl -X GET https://app.dacard.ai/api/integrations/discover \
  -H "Authorization: Bearer $DACARD_API_KEY"
PropertyValue
AuthRequired
IdempotentYes

Query

FieldTypeRequiredNotes
categorystringnoNarrow to one category (e.g., engineering, product, sales).

Response

{
  "providers": [
    {
      "key": "github",
      "name": "GitHub",
      "category": "engineering",
      "connected": true,
      "lastSyncedAt": "2026-05-06T03:00:00Z",
      "signalTypes": 16,
      "supportsOAuth": true
    }
  ]
}

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
500INTERNAL_ERRORRead failed.
For per-provider connect/sync/disconnect, see the Integrations group.