For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • GETList integrations
      • POSTReserve a new integration
      • GETList integrations by category
      • GETGet integration credential status
      • POSTInstall Slack integration
      • POSTRotate Slack credentials
      • POSTInstall Telegram integration
      • GETCheck managed Telegram bot availability
      • POSTInitiate managed Telegram bot creation
      • POSTRotate managed Telegram bot token
      • DELCancel managed Telegram bot request
      • POSTConfirm managed Telegram bot rename
      • POSTReject managed Telegram bot rename
      • GETGet managed Telegram bot request status
      • GETList configured integration tools
      • GETList Vectorize configurations
      • POSTCreate Vectorize configuration
      • POSTCreate Vectorize index
      • POSTList Vectorize indexes
      • POSTTest new Vectorize configuration
      • GETGet Vectorize configuration
      • PUTUpdate Vectorize configuration
      • DELDelete Vectorize configuration
      • POSTTest saved Vectorize configuration
      • GETList Weaviate configurations
      • POSTCreate Weaviate configuration
      • POSTTest new Weaviate configuration
      • GETGet Weaviate configuration
      • PUTUpdate Weaviate configuration
      • DELDelete Weaviate configuration
      • POSTList Weaviate collections
      • POSTTest Weaviate connection
      • GETGet integration details
      • POSTSave integration credentials
      • DELDelete integration credentials
      • GETList tools for an integration
      • GETGet an integration tool
Dashboard
LogoLogo
Runtype APIIntegrations

Get integration details

GET
/v1/integrations/:integrationId
GET
/v1/integrations/:integrationId
$curl https://api.runtype.com/v1/integrations/integrationId \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "category": "analytics",
3 "description": "Integration with Google Analytics to track website traffic and user behavior.",
4 "id": "ga-1234567890",
5 "isConfigured": false,
6 "missingCredentials": [
7 "apiKey",
8 "clientSecret"
9 ],
10 "name": "Google Analytics",
11 "requiredCredentials": [
12 "apiKey",
13 "clientSecret"
14 ],
15 "tools": [
16 {
17 "description": "Real-time traffic monitoring tool",
18 "name": "Real-Time Dashboard",
19 "toolId": "rt-dashboard"
20 },
21 {
22 "description": "Audience segmentation and analysis",
23 "name": "Audience Insights",
24 "toolId": "audience-insights"
25 }
26 ],
27 "documentationUrl": "https://developers.google.com/analytics/devguides/collection/analyticsjs",
28 "icon": "https://runtype.com/icons/google-analytics.png"
29}
Get details for a specific integration including its tools and configuration status.
Was this page helpful?
Previous

Save integration credentials

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Path parameters

integrationIdstringRequired

Response

Integration details
categorystring
descriptionstring
idstring
isConfiguredboolean
missingCredentialslist of strings
namestring
requiredCredentialslist of strings
toolslist of objects
documentationUrlstring
iconstring

Errors

401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error