Dataiku Jobs API

Run and monitor build jobs

Operations 4

GET /projects/{projectKey}/jobs Dataiku List jobs #
POST /projects/{projectKey}/jobs Dataiku Start a new job #
GET /projects/{projectKey}/jobs/{jobId} Dataiku Get job status #
DELETE /projects/{projectKey}/jobs/{jobId} Dataiku Abort a job #

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/dataiku-jobs-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

dataiku-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dataiku DSS Public Jobs API
  description: REST API for managing Dataiku DSS instances, projects, datasets, recipes, jobs, scenarios, models, and other platform resources programmatically. Provides full control over DSS operations including data preparation, machine learning model management, and workflow automation.
  version: '13.0'
  contact:
    name: Dataiku Support
    url: https://www.dataiku.com/support
    email: support@dataiku.com
  termsOfService: https://www.dataiku.com/terms/
servers:
- url: https://{dss-host}/public/api
  description: Dataiku DSS Instance
  variables:
    dss-host:
      default: dss.example.com
      description: Hostname of the Dataiku DSS instance
security:
- apiKeyAuth: []
tags:
- name: Jobs
  description: Run and monitor build jobs
paths:
  /projects/{projectKey}/jobs:
    get:
      operationId: listJobs
      summary: Dataiku List jobs
      description: List jobs in a project.
      tags:
      - Jobs
      parameters:
      - $ref: '#/components/parameters/projectKey'
      responses:
        '200':
          description: List of jobs
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobSummary'
        '404':
          description: Project not found
    post:
      operationId: startJob
      summary: Dataiku Start a new job
      description: Start a new build job in the project.
      tags:
      - Jobs
      parameters:
      - $ref: '#/components/parameters/projectKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartJobRequest'
      responses:
        '200':
          description: Job started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Job'
        '400':
          description: Invalid request
  /projects/{projectKey}/jobs/{jobId}:
    get:
      operationId: getJob
      summary: Dataiku Get job status
      description: Retrieve the status and details of a specific job.
      tags:
      - Jobs
      parameters:
      - $ref: '#/components/parameters/projectKey'
      - $ref: '#/components/parameters/jobId'
      responses:
        '200':
          description: Job details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Job'
        '404':
          description: Job not found
    delete:
      operationId: abortJob
      summary: Dataiku Abort a job
      description: Abort a running job.
      tags:
      - Jobs
      parameters:
      - $ref: '#/components/parameters/projectKey'
      - $ref: '#/components/parameters/jobId'
      responses:
        '204':
          description: Job aborted
        '404':
          description: Job not found
components:
  schemas:
    JobSummary:
      type: object
      properties:
        id:
          type: string
          description: Unique job identifier
        projectKey:
          type: string
          description: Project key
        state:
          type: string
          enum:
          - NOT_STARTED
          - RUNNING
          - DONE
          - FAILED
          - ABORTED
          description: Current state of the job
        initiator:
          type: string
          description: User who started the job
        startTime:
          type: integer
          format: int64
          description: Job start time as epoch milliseconds
    StartJobRequest:
      type: object
      required:
      - outputs
      properties:
        outputs:
          type: array
          items:
            type: object
            properties:
              projectKey:
                type: string
              id:
                type: string
              type:
                type: string
                enum:
                - DATASET
                - MANAGED_FOLDER
                - SAVED_MODEL
          description: List of outputs to build
    Job:
      type: object
      properties:
        id:
          type: string
          description: Unique job identifier
        projectKey:
          type: string
          description: Project key
        state:
          type: string
          enum:
          - NOT_STARTED
          - RUNNING
          - DONE
          - FAILED
          - ABORTED
          description: Current state of the job
        initiator:
          type: string
          description: User who started the job
        startTime:
          type: integer
          format: int64
          description: Job start time as epoch milliseconds
        endTime:
          type: integer
          format: int64
          description: Job end time as epoch milliseconds
        activities:
          type: array
          items:
            $ref: '#/components/schemas/JobActivity'
          description: List of activities in the job
    JobActivity:
      type: object
      properties:
        recipeProjectKey:
          type: string
        recipeName:
          type: string
        state:
          type: string
          enum:
          - NOT_STARTED
          - RUNNING
          - DONE
          - FAILED
          - ABORTED
          description: Activity state
  parameters:
    projectKey:
      name: projectKey
      in: path
      required: true
      description: Unique project key identifier
      schema:
        type: string
    jobId:
      name: jobId
      in: path
      required: true
      description: Unique job identifier
      schema:
        type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key authentication. Pass the API key as a Bearer token in the Authorization header.
externalDocs:
  description: Dataiku DSS Public API Documentation
  url: https://doc.dataiku.com/dss/latest/publicapi/rest/index.html