Dataiku Managed Folders API

Manage folders for unstructured data

Operations 2

GET /projects/{projectKey}/managedfolders Dataiku List managed folders #
GET /projects/{projectKey}/managedfolders/{folderId}/contents Dataiku List managed folder contents #

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-managed-folders-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-managed-folders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dataiku DSS Public Managed Folders 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: Managed Folders
  description: Manage folders for unstructured data
paths:
  /projects/{projectKey}/managedfolders:
    get:
      operationId: listManagedFolders
      summary: Dataiku List managed folders
      description: List all managed folders in a project.
      tags:
      - Managed Folders
      parameters:
      - $ref: '#/components/parameters/projectKey'
      responses:
        '200':
          description: List of managed folders
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ManagedFolder'
        '404':
          description: Project not found
  /projects/{projectKey}/managedfolders/{folderId}/contents:
    get:
      operationId: listManagedFolderContents
      summary: Dataiku List managed folder contents
      description: List the files in a managed folder.
      tags:
      - Managed Folders
      parameters:
      - $ref: '#/components/parameters/projectKey'
      - $ref: '#/components/parameters/folderId'
      responses:
        '200':
          description: Folder contents
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManagedFolderContents'
        '404':
          description: Managed folder not found
components:
  schemas:
    ManagedFolderContents:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
            properties:
              path:
                type: string
                description: File path within the folder
              size:
                type: integer
                format: int64
                description: File size in bytes
              lastModified:
                type: integer
                format: int64
                description: Last modified timestamp
          description: List of items in the folder
    ManagedFolder:
      type: object
      properties:
        projectKey:
          type: string
          description: Project key
        id:
          type: string
          description: Managed folder identifier
        name:
          type: string
          description: Managed folder name
        type:
          type: string
          description: Storage type
  parameters:
    projectKey:
      name: projectKey
      in: path
      required: true
      description: Unique project key identifier
      schema:
        type: string
    folderId:
      name: folderId
      in: path
      required: true
      description: Managed folder 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