Coactive datasets > datasetConfig API

The datasets > datasetConfig API from Coactive — 1 operation(s) for datasets > datasetconfig.

Operations 1

GET /api/v1/datasets/{dataset_id}/config Get Dataset Config #

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/coactive-datasets-datasetconfig-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

coactive-datasets-datasetconfig-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference agentic-search > agenticSearch datasets > datasetConfig API
  version: 1.0.0
servers:
- url: https://api.coactive.ai
  description: Production
- url: https://app.coactive.ai
  description: Production
tags:
- name: datasets > datasetConfig
paths:
  /api/v1/datasets/{dataset_id}/config:
    get:
      operationId: get-dataset-config-api-v-1-datasets-dataset-id-config-get
      summary: Get Dataset Config
      description: Retrieve configuration for a dataset from the dataset_config JSONB column.
      tags:
      - datasets > datasetConfig
      parameters:
      - name: dataset_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: include_deleted
        in: query
        required: false
        schema:
          type: boolean
          default: false
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/datasets_DatasetConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/datasets_HTTPValidationError'
components:
  schemas:
    datasets_HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/datasets_ValidationError'
      title: HTTPValidationError
    datasets_ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            $ref: '#/components/schemas/datasets_ValidationErrorLocItems'
        msg:
          type: string
        type:
          type: string
      required:
      - loc
      - msg
      - type
      title: ValidationError
    datasets_DatasetConfigResponse:
      type: object
      properties:
        dataset_id:
          type: string
          format: uuid
        embedding_id:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
            format: uuid
        encoder_name:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        hybrid_search:
          type:
          - object
          - 'null'
          additionalProperties:
            type: object
            additionalProperties:
              type: number
              format: double
        metadata_fields_to_embed:
          type:
          - array
          - 'null'
          items:
            type: string
        metadata_fields_to_index:
          type:
          - array
          - 'null'
          items:
            type: string
        new_video_data_model:
          type:
          - boolean
          - 'null'
        celebrity_detection_enabled:
          type:
          - boolean
          - 'null'
          default: false
        context_studio_enabled:
          type:
          - boolean
          - 'null'
          default: false
        agentic_search_metadata_description:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        asset_identifier_key:
          type:
          - string
          - 'null'
      required:
      - dataset_id
      description: Response schema for the dataset_config JSONB column.
      title: DatasetConfigResponse
    datasets_ValidationErrorLocItems:
      oneOf:
      - type: string
      - type: integer
      title: ValidationErrorLocItems
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer