Dataiku Code Envs API

Manage code environments for Python and R

Operations 2

GET /admin/code-envs Dataiku List code environments #
GET /admin/code-envs/{envLang}/{envName} Dataiku Get code environment details #

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-code-envs-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-code-envs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dataiku DSS Public Code Envs 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: Code Envs
  description: Manage code environments for Python and R
paths:
  /admin/code-envs:
    get:
      operationId: listCodeEnvs
      summary: Dataiku List code environments
      description: List all code environments on the DSS instance.
      tags:
      - Code Envs
      responses:
        '200':
          description: List of code environments
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CodeEnvSummary'
        '401':
          description: Unauthorized
  /admin/code-envs/{envLang}/{envName}:
    get:
      operationId: getCodeEnv
      summary: Dataiku Get code environment details
      description: Get the definition of a code environment.
      tags:
      - Code Envs
      parameters:
      - $ref: '#/components/parameters/envLang'
      - $ref: '#/components/parameters/envName'
      responses:
        '200':
          description: Code environment details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CodeEnv'
        '404':
          description: Code environment not found
components:
  schemas:
    CodeEnv:
      type: object
      properties:
        envName:
          type: string
          description: Code environment name
        envLang:
          type: string
          enum:
          - PYTHON
          - R
          description: Programming language
        deploymentMode:
          type: string
          description: Deployment mode
        specPackageList:
          type: string
          description: Pip or CRAN package specification
        pythonInterpreter:
          type: string
          description: Python interpreter path (Python envs only)
    CodeEnvSummary:
      type: object
      properties:
        envName:
          type: string
          description: Code environment name
        envLang:
          type: string
          enum:
          - PYTHON
          - R
          description: Programming language
  parameters:
    envName:
      name: envName
      in: path
      required: true
      description: Code environment name
      schema:
        type: string
    envLang:
      name: envLang
      in: path
      required: true
      description: Code environment language (PYTHON or R)
      schema:
        type: string
        enum:
        - PYTHON
        - R
  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