Dataiku Authentication API

Manage API keys for service access

Operations 4

GET /auth/keys Dataiku List authentication keys #
POST /auth/keys Dataiku Create an authentication key #
GET /auth/keys/{keyId} Dataiku Get authentication key details #
DELETE /auth/keys/{keyId} Dataiku Delete an authentication key #

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-authentication-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-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dataiku API Node Administration Authentication API
  description: REST API for administering Dataiku API Nodes, managing deployed services, service generations, prediction endpoints, and authentication keys for real-time API serving of machine learning models and data lookups.
  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://{apinode-host}:{port}/admin/api
  description: Dataiku API Node Instance
  variables:
    apinode-host:
      default: apinode.example.com
      description: Hostname of the Dataiku API Node
    port:
      default: '12443'
      description: Admin API port
security:
- apiKeyAuth: []
tags:
- name: Authentication
  description: Manage API keys for service access
paths:
  /auth/keys:
    get:
      operationId: listAuthKeys
      summary: Dataiku List authentication keys
      description: List all API authentication keys configured for accessing services.
      tags:
      - Authentication
      responses:
        '200':
          description: List of authentication keys
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuthKey'
        '401':
          description: Unauthorized
    post:
      operationId: createAuthKey
      summary: Dataiku Create an authentication key
      description: Create a new authentication key for accessing API node services.
      tags:
      - Authentication
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAuthKeyRequest'
      responses:
        '200':
          description: Authentication key created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthKey'
        '400':
          description: Invalid request
  /auth/keys/{keyId}:
    get:
      operationId: getAuthKey
      summary: Dataiku Get authentication key details
      description: Retrieve details of a specific authentication key.
      tags:
      - Authentication
      parameters:
      - $ref: '#/components/parameters/keyId'
      responses:
        '200':
          description: Authentication key details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthKey'
        '404':
          description: Key not found
    delete:
      operationId: deleteAuthKey
      summary: Dataiku Delete an authentication key
      description: Delete an authentication key.
      tags:
      - Authentication
      parameters:
      - $ref: '#/components/parameters/keyId'
      responses:
        '204':
          description: Key deleted
        '404':
          description: Key not found
components:
  schemas:
    AuthKey:
      type: object
      properties:
        id:
          type: string
          description: Key identifier
        key:
          type: string
          description: The API key value
        label:
          type: string
          description: Descriptive label
        createdOn:
          type: integer
          format: int64
          description: Creation timestamp
        allowedServices:
          type: array
          items:
            type: string
          description: List of services this key can access (empty means all)
    CreateAuthKeyRequest:
      type: object
      properties:
        label:
          type: string
          description: Descriptive label for the key
        allowedServices:
          type: array
          items:
            type: string
          description: List of services this key can access
  parameters:
    keyId:
      name: keyId
      in: path
      required: true
      description: Authentication key identifier
      schema:
        type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Admin API key passed as Bearer token
externalDocs:
  description: Dataiku API Node Administration Documentation
  url: https://doc.dataiku.com/dss/latest/apinode/api/admin-api.html