Treasure Data Bulk Loads API

Bulk load sessions from external sources

Operations 3

GET /bulk_loads List bulk load sessions #
GET /bulk_loads/{name} Get bulk load session #
GET /bulk_loads/{name}/jobs List bulk load jobs #

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-bulk-loads-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

treasure-data-bulk-loads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Treasure Data TD Bulk Import Bulk Loads API
  description: 'Core REST API for managing databases, tables, jobs, bulk imports, connectors, and users within the Treasure Data Customer Data Platform. Supports Presto and Hive query execution on big data warehouses.

    '
  version: v3
  contact:
    url: https://docs.treasure.ai/apis/td-api
  license:
    name: Treasure Data Terms of Service
    url: https://www.treasure.ai/
servers:
- url: https://api.treasuredata.com/v3
  description: Treasure Data API v3
security:
- TDAuth: []
tags:
- name: Bulk Loads
  description: Bulk load sessions from external sources
paths:
  /bulk_loads:
    get:
      operationId: listBulkLoads
      summary: List bulk load sessions
      description: Returns the list of available bulk load sessions.
      tags:
      - Bulk Loads
      responses:
        '200':
          description: List of bulk loads
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BulkLoad'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /bulk_loads/{name}:
    get:
      operationId: getBulkLoad
      summary: Get bulk load session
      description: Retrieves a specific bulk load session by name.
      tags:
      - Bulk Loads
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
        description: Name of the bulk load session
      responses:
        '200':
          description: Bulk load session details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkLoad'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /bulk_loads/{name}/jobs:
    get:
      operationId: listBulkLoadJobs
      summary: List bulk load jobs
      description: Lists the executed job history for the specified bulk load session.
      tags:
      - Bulk Loads
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
        description: Name of the bulk load session
      responses:
        '200':
          description: List of bulk load jobs
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BulkLoadJob'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    Unauthorized:
      description: Authentication required or API key invalid
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Resource not found
  schemas:
    BulkLoad:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        cron:
          type: string
          description: Cron schedule expression
        timezone:
          type: string
        delay:
          type: integer
        database:
          type: string
        table:
          type: string
        config:
          type: object
          description: Bulk load source configuration
        config_diff:
          type: object
          description: Configuration diff from last run
    BulkLoadJob:
      type: object
      properties:
        account_id:
          type: integer
        status:
          type: string
        records:
          type: integer
        schema:
          type: string
        job_id:
          type: string
        type:
          type: string
        config:
          type: object
        database:
          type: string
        table:
          type: string
        created_at:
          type: string
          format: date-time
        start_at:
          type: string
          format: date-time
        end_at:
          type: string
          format: date-time
  securitySchemes:
    TDAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Treasure Data API key authentication. Set header value to "TD1 <your-api-key>".

        '