Dataiku · Arazzo Workflow

Dataiku Inspect and Read a Dataset

Version 1.0.0

List a project's datasets, fetch a dataset definition, and read a sample of its rows.

1 workflow 1 source API 1 provider
View Spec View on GitHub AnalyticsArtificial IntelligenceData PlatformData ScienceMachine-LearningArazzoWorkflows

Provider

dataiku

Workflows

inspect-and-read-dataset
Discover a dataset and read a sample of its rows.
Lists datasets in a project, gets one dataset definition, and reads a limited number of rows from it.
3 steps inputs: apiKey, datasetName, limit, projectKey outputs: columns, datasetType, totalCount
1
listDatasets
listDatasets
List all datasets in the project to confirm the target is present.
2
getDataset
getDataset
Read the dataset definition to confirm its type and schema.
3
readData
getDatasetData
Read a bounded sample of rows from the dataset.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dataiku Inspect and Read a Dataset
  summary: List a project's datasets, fetch a dataset definition, and read a sample of its rows.
  description: >-
    Walks the discovery path for a Dataiku DSS dataset. The workflow lists every
    dataset in a project, reads the full definition of the named dataset to
    confirm its type and schema, and then reads a bounded sample of rows from
    the dataset. Every step inlines its request so the flow can be executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: dssPublicApi
  url: ../openapi/dataiku-public-api-openapi.yml
  type: openapi
workflows:
- workflowId: inspect-and-read-dataset
  summary: Discover a dataset and read a sample of its rows.
  description: >-
    Lists datasets in a project, gets one dataset definition, and reads a
    limited number of rows from it.
  inputs:
    type: object
    required:
    - apiKey
    - projectKey
    - datasetName
    properties:
      apiKey:
        type: string
        description: DSS API key passed as a Bearer token in the Authorization header.
      projectKey:
        type: string
        description: Project key to inspect.
      datasetName:
        type: string
        description: Name of the dataset to read.
      limit:
        type: integer
        description: Maximum number of rows to return.
        default: 100
  steps:
  - stepId: listDatasets
    description: List all datasets in the project to confirm the target is present.
    operationId: listDatasets
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectKey
      in: path
      value: $inputs.projectKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      datasets: $response.body
  - stepId: getDataset
    description: Read the dataset definition to confirm its type and schema.
    operationId: getDataset
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectKey
      in: path
      value: $inputs.projectKey
    - name: datasetName
      in: path
      value: $inputs.datasetName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      datasetType: $response.body#/type
      schema: $response.body#/schema
  - stepId: readData
    description: Read a bounded sample of rows from the dataset.
    operationId: getDatasetData
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectKey
      in: path
      value: $inputs.projectKey
    - name: datasetName
      in: path
      value: $inputs.datasetName
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      columns: $response.body#/columns
      rows: $response.body#/rows
      totalCount: $response.body#/totalCount
  outputs:
    datasetType: $steps.getDataset.outputs.datasetType
    columns: $steps.readData.outputs.columns
    totalCount: $steps.readData.outputs.totalCount

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/dataiku-inspect-and-read-dataset-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.