Treasure Data Workflow Executor API

The WorkflowExecutor API from Treasure Data — 1 operation(s) for workflowexecutor.

Operations 1

GET /api/workflow_executors/{id} show

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-workflowexecutor-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-workflowexecutor-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: llm-api Workflow Executor API
  version: 1.0.0
servers:
- url: https://llm-api.treasuredata.com
- url: https://llm-api.eu01.treasuredata.com
- url: https://llm-api.ap02.treasuredata.com
- url: https://llm-api.treasuredata.co.jp
security:
- ApiKeyAuth: []
tags:
- name: WorkflowExecutor
paths:
  /api/workflow_executors/{id}:
    get:
      summary: show
      tags:
      - WorkflowExecutor
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
        example: 00000000-0000-0000-0000-000000000001
      - name: include
        in: query
        required: false
        schema:
          type: string
        example: createdBy,updatedBy
      responses:
        '200':
          description: includes by created_by and updated_by
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                      links:
                        type: object
                        properties:
                          self:
                            type: string
                        required:
                        - self
                      attributes:
                        type: object
                        properties:
                          createdAt:
                            type: string
                          updatedAt:
                            type: string
                          tdAccountId:
                            type: string
                          projectId:
                            type: string
                          name:
                            type: string
                          createdByUserId:
                            type: string
                          updatedByUserId:
                            type: string
                        required:
                        - createdAt
                        - updatedAt
                        - tdAccountId
                        - projectId
                        - name
                        - createdByUserId
                        - updatedByUserId
                      relationships:
                        type: object
                        properties:
                          createdBy:
                            type: object
                            properties:
                              data:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  id:
                                    type: string
                                required:
                                - type
                                - id
                            required:
                            - data
                          updatedBy:
                            type: object
                            properties:
                              data:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  id:
                                    type: string
                                required:
                                - type
                                - id
                            required:
                            - data
                        required:
                        - createdBy
                        - updatedBy
                    required:
                    - id
                    - type
                    - links
                    - attributes
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                        attributes:
                          type: object
                          properties:
                            name:
                              type: string
                            email:
                              type: string
                          required:
                          - name
                          - email
                      required:
                      - id
                      - type
                      - attributes
                required:
                - data
              example:
                data:
                  id: 00000000-0000-0000-0000-000000000001
                  type: workflowExecutors
                  links:
                    self: http://www.example.com/api/workflow_executors/00000000-0000-0000-0000-000000000001
                  attributes:
                    createdAt: '2025-05-01T05:05:14.000Z'
                    updatedAt: '2025-05-01T05:05:14.000Z'
                    tdAccountId: '100'
                    projectId: 00000000-0000-0000-0000-000000000001
                    name: Project Workflow Executor
                    createdByUserId: 00000000-0000-0000-0000-000000000001
                    updatedByUserId: 00000000-0000-0000-0000-000000000001
                  relationships:
                    createdBy:
                      data:
                        type: users
                        id: 00000000-0000-0000-0000-000000000001
                    updatedBy:
                      data:
                        type: users
                        id: 00000000-0000-0000-0000-000000000001
                included:
                - id: 00000000-0000-0000-0000-000000000001
                  type: users
                  attributes:
                    name: Admin User
                    email: admin@example.com
components:
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: TD1