Coactive ingestion API

The ingestion API from Coactive — 1 operation(s) for ingestion.

Operations 1

POST /api/v0/delete/assets Delete Assets #

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-ingestion-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-ingestion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference agentic-search > agenticSearch Ingestion API
  version: 1.0.0
servers:
- url: https://api.coactive.ai
  description: Production
- url: https://app.coactive.ai
  description: Production
tags:
- name: ingestion
paths:
  /api/v0/delete/assets:
    post:
      operationId: delete-assets
      summary: Delete Assets
      description: Delete assets from a dataset by creating deletion jobs.  Supports deletion of up to 100 assets per request.  Assets can be identified by their Coactive Video/Image ID or path string.
      tags:
      - ingestion
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '202':
          description: Deletion jobs enqueued
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteAssetsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteAssetsRequest'
components:
  schemas:
    DeleteJobAssetIdentifier:
      oneOf:
      - type: string
        format: uuid
      - type: string
      description: Either the Coactive Video/Image ID of the asset or a path string
      title: DeleteJobAssetIdentifier
    DeleteAssetsResponseAssetsItems:
      type: object
      properties:
        asset_type:
          $ref: '#/components/schemas/AssetType'
        identifier:
          $ref: '#/components/schemas/DeleteJobAssetIdentifier'
          description: Either the Coactive Video/Image ID of the asset or a path string
        delete_job_id:
          type: string
          description: Beanie ObjectId as string
      required:
      - asset_type
      - identifier
      - delete_job_id
      title: DeleteAssetsResponseAssetsItems
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      title: HTTPValidationError
    DeleteAssetsResponse:
      type: object
      properties:
        org_id:
          type: string
        dataset_id:
          type: string
          format: uuid
        assets:
          type: array
          items:
            $ref: '#/components/schemas/DeleteAssetsResponseAssetsItems'
      required:
      - org_id
      - dataset_id
      - assets
      title: DeleteAssetsResponse
    DeleteJobAsset:
      type: object
      properties:
        asset_type:
          $ref: '#/components/schemas/AssetType'
        identifier:
          $ref: '#/components/schemas/DeleteJobAssetIdentifier'
          description: Either the Coactive Video/Image ID of the asset or a path string
      required:
      - asset_type
      - identifier
      title: DeleteJobAsset
    ValidationErrorLocItems:
      oneOf:
      - type: string
      - type: integer
      - type: string
      - type: integer
      title: ValidationErrorLocItems
    DeleteAssetsRequest:
      type: object
      properties:
        dataset_id:
          type: string
          format: uuid
        assets:
          type: array
          items:
            $ref: '#/components/schemas/DeleteJobAsset'
      required:
      - dataset_id
      - assets
      title: DeleteAssetsRequest
    AssetType:
      type: string
      enum:
      - image
      - video
      description: An enumeration.
      title: AssetType
    ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            $ref: '#/components/schemas/ValidationErrorLocItems'
        msg:
          type: string
        type:
          type: string
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer