Treasure Data Connections API

The Connections API from Treasure Data — 5 operation(s) for connections.

Operations 5

GET /result/list Get connections #
POST /result/create/{connection_name} Create connection #
POST /result/delete/{connection_name} Delete connection #
GET /connections/lookup Get connection id by name #
POST /connector_configs/validate_with_connection Validate connector config #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/treasure-data-connections-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

treasure-data-connections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Treasure Data Connections API
  version: '3'
servers:
- url: https://api.treasuredata.com/v3
- url: https://api.treasuredata.co.jp/v3
- url: https://api.ap02.treasuredata.com/v3
- url: https://api.eu01.treasuredata.com/v3
security:
- ApiKeyAuth: []
tags:
- name: Connections
paths:
  /result/list:
    get:
      summary: Get connections
      description: Retrieves a list of connections.
      operationId: getConnections
      tags:
      - Connections
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - results
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      additionalProperties: false
                      required:
                      - name
                      - url
                      - organization
                      properties:
                        name:
                          type: string
                        url:
                          type: string
                        organization:
                          type:
                          - string
                          - 'null'
                          deprecated: true
  /result/create/{connection_name}:
    post:
      summary: Create connection
      description: Creates a connection.
      operationId: createConnection
      tags:
      - Connections
      parameters:
      - $ref: '#/components/parameters/path_connection_name'
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              additionalProperties: false
              properties:
                url:
                  type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - name
                - result
                properties:
                  name:
                    $ref: '#/components/schemas/Connection/properties/name'
                  result:
                    $ref: '#/components/schemas/Connection/properties/name'
  /result/delete/{connection_name}:
    post:
      summary: Delete connection
      description: Deletes a connection.
      operationId: deleteConnection
      tags:
      - Connections
      parameters:
      - $ref: '#/components/parameters/path_connection_name'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - name
                - result
                properties:
                  name:
                    $ref: '#/components/schemas/Connection/properties/name'
                  result:
                    $ref: '#/components/schemas/Connection/properties/name'
  /connections/lookup:
    get:
      summary: Get connection id by name
      description: Retrieves the specified connection.
      operationId: getConnectionIdByName
      tags:
      - Connections
      parameters:
      - name: name
        required: true
        in: query
        schema:
          $ref: '#/components/schemas/Connection/properties/name'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - id
                properties:
                  id:
                    $ref: '#/components/schemas/ConnectionId'
  /connector_configs/validate_with_connection:
    post:
      summary: Validate connector config
      description: Validates a connector configuration.
      operationId: validateConnectorConfig
      tags:
      - Connections
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              additionalProperties: false
              properties:
                type:
                  type: string
                settings:
                  type: object
                connection_id:
                  $ref: '#/components/schemas/ConnectionId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - type
                - settings
                properties:
                  type:
                    type: string
                  settings:
                    type: object
components:
  schemas:
    ConnectionId:
      description: the connection id
      type: integer
      example: 17
    Connection:
      title: Connection
      type: object
      additionalProperties: false
      properties:
        id:
          $ref: '#/components/schemas/ConnectionId'
        name:
          type: string
  parameters:
    path_connection_name:
      name: connection_name
      description: the connection name
      required: true
      in: path
      schema:
        $ref: '#/components/schemas/Connection/properties/name'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: TD1