Skip to main content
GET
/
api
/
v1
/
action-integrations
curl "https://app.talkover.ai/api/v1/action-integrations" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": [
    {
      "identifier": "calendar",
      "display_name": "Calendar",
      "description": "Create events on a connected calendar during a call.",
      "category": "scheduling",
      "icon_url": "https://app.talkover.ai/integrations/icons/calendar.svg"
    },
    {
      "identifier": "email-calendar",
      "display_name": "Email + Calendar Invite",
      "description": "Send a calendar invite via email after the call.",
      "category": "scheduling",
      "icon_url": "https://app.talkover.ai/integrations/icons/email-calendar.svg"
    },
    {
      "identifier": "crm",
      "display_name": "CRM Sync",
      "description": "Push call summary and outcome to your CRM.",
      "category": "data",
      "icon_url": "https://app.talkover.ai/integrations/icons/crm.svg"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt

Use this file to discover all available pages before exploring further.

List Action Integrations

Retrieve the catalog of pre-built integrations that can be attached to agent actions. Each integration includes the metadata you need to configure it (display name, category, configuration schema).

Endpoint

GET /api/v1/action-integrations

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl "https://app.talkover.ai/api/v1/action-integrations" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": [
    {
      "identifier": "calendar",
      "display_name": "Calendar",
      "description": "Create events on a connected calendar during a call.",
      "category": "scheduling",
      "icon_url": "https://app.talkover.ai/integrations/icons/calendar.svg"
    },
    {
      "identifier": "email-calendar",
      "display_name": "Email + Calendar Invite",
      "description": "Send a calendar invite via email after the call.",
      "category": "scheduling",
      "icon_url": "https://app.talkover.ai/integrations/icons/email-calendar.svg"
    },
    {
      "identifier": "crm",
      "display_name": "CRM Sync",
      "description": "Push call summary and outcome to your CRM.",
      "category": "data",
      "icon_url": "https://app.talkover.ai/integrations/icons/crm.svg"
    }
  ]
}

Response Fields

data[].identifier
string
required
Unique identifier used when creating an action with integration: { id: "<identifier>" }.
data[].display_name
string
required
Human-readable name shown in the dashboard.
data[].description
string
Short description of what the integration does.
data[].category
string
Group the integration belongs to (e.g., scheduling, data, communication).
data[].icon_url
string
Public URL of an icon for the integration.

Notes

  • Use the identifier value when creating an action via Create Action — pass it as integration.id.
  • Categories are stable; the integration list may grow over time.