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 data connections
      • POSTCreate connect session
      • POSTSync connections
      • GETGet data connection
      • DELDelete data connection
      • PATCHUpdate connection status
      • GETList connection tools
Dashboard
LogoLogo
Runtype APIData Connections

List connection tools

GET
/v1/data-connections/:id/tools
GET
/v1/data-connections/:id/tools
$curl https://api.runtype.com/v1/data-connections/id/tools \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": {
3 "category": "database",
4 "connectionId": "conn_9f8b7c6d-1234-4e56-8a9b-0c1d2e3f4a5b",
5 "providerName": "PostgreSQL",
6 "tools": [
7 {
8 "name": "Query Editor",
9 "description": "Interactive SQL query editor with syntax highlighting and autocomplete.",
10 "version": "2.3.1"
11 },
12 {
13 "name": "Schema Explorer",
14 "description": "Visualize and browse database schema and table relationships.",
15 "version": "1.8.0"
16 },
17 {
18 "name": "Data Importer",
19 "description": "Tool to import CSV and JSON data into your database tables.",
20 "version": "1.5.4"
21 }
22 ]
23 }
24}
List available tools for a specific data connection.
Was this page helpful?
Previous

Execute a flow or agent

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Path parameters

idstringRequired

Response

Connection tools
dataobject

Errors

401
Unauthorized Error
404
Not Found Error
500
Internal Server Error