Coactive datasets > encoder API

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

Operations 1

GET /api/v1/encoders List Available Encoders #

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-encoder-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-encoder-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference agentic-search > agenticSearch datasets > encoder API
  version: 1.0.0
servers:
- url: https://api.coactive.ai
  description: Production
- url: https://app.coactive.ai
  description: Production
tags:
- name: datasets > encoder
paths:
  /api/v1/encoders:
    get:
      operationId: list-available-encoders-api-v-1-encoders-get
      summary: List Available Encoders
      description: List available encoders
      tags:
      - datasets > encoder
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/datasets_EncoderDescription'
components:
  schemas:
    datasets_AudioEncoderNameEnum:
      type: string
      enum:
      - audio
      - text-llm
      title: AudioEncoderNameEnum
    datasets_EncoderDescription:
      type: object
      properties:
        name:
          $ref: '#/components/schemas/datasets_EncoderDescriptionName'
          description: The name of the encoder.
        description:
          type:
          - string
          - 'null'
          description: A short summary of what the encoder is used for.
        modality:
          $ref: '#/components/schemas/datasets_ModalityEnum'
          description: The modality of the encoder.
      required:
      - name
      - modality
      description: An encoder
      title: EncoderDescription
    datasets_ModalityEnum:
      type: string
      enum:
      - image
      - audio_speech_to_text
      - video
      description: Indicates the modality of an encoder
      title: ModalityEnum
    datasets_EncoderDescriptionName:
      oneOf:
      - $ref: '#/components/schemas/datasets_VisualEncoderNameEnum'
      - $ref: '#/components/schemas/datasets_AudioEncoderNameEnum'
      description: The name of the encoder.
      title: EncoderDescriptionName
    datasets_VisualEncoderNameEnum:
      type: string
      enum:
      - multimodal
      - multimodal-tx-large2
      - multimodal-tx-large3
      - multimodal-tx-large4
      - nova2-multimodal
      - resnet-50
      - resnet-50-reduced
      title: VisualEncoderNameEnum
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer