Reka Videos API

Upload and manage videos for the Reka Vision platform.

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/reka-videos-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

reka-videos-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Reka Chat Videos API
  description: 'The Reka API exposes Reka''s multimodal foundation models through a REST

    interface that includes chat completions, vision (video and image

    management, search, Q&A, clip generation), speech transcription and

    translation, and a Research API with web search capabilities. The chat

    surface is OpenAI-compatible.


    Only a representative subset of endpoints is modeled here, drawn from

    the public Reka documentation at https://docs.reka.ai. See the

    documentation for the full catalog.

    '
  version: 1.0.0
  contact:
    name: Reka Documentation
    url: https://docs.reka.ai
  license:
    name: Reka Proprietary
servers:
- url: https://api.reka.ai
  description: Reka API production server
security:
- bearerAuth: []
tags:
- name: Videos
  description: Upload and manage videos for the Reka Vision platform.
paths:
  /v1/videos/upload:
    post:
      tags:
      - Videos
      summary: Upload a video
      description: Upload a video file to the Reka Vision platform.
      operationId: uploadVideo
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: Video file to upload.
                metadata:
                  type: string
                  description: Optional JSON metadata for the video.
      responses:
        '200':
          description: Video uploaded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video'
  /v1/videos:
    get:
      tags:
      - Videos
      summary: List videos
      description: List videos uploaded to the caller's account.
      operationId: listVideos
      parameters:
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
        description: Maximum number of videos to return.
      - name: cursor
        in: query
        schema:
          type: string
        description: Pagination cursor.
      responses:
        '200':
          description: List of videos.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Video'
  /v1/videos/{video_id}:
    get:
      tags:
      - Videos
      summary: Get a video
      description: Retrieve metadata for a specific uploaded video.
      operationId: getVideo
      parameters:
      - name: video_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Video details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video'
    delete:
      tags:
      - Videos
      summary: Delete a video
      description: Delete a video and its associated indexes.
      operationId: deleteVideo
      parameters:
      - name: video_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Video deleted.
components:
  schemas:
    Video:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        created_at:
          type: string
          format: date-time
        metadata:
          type: object
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: REKA_API_KEY
      description: 'Bearer token issued from the Reka Platform dashboard. Pass as

        `Authorization: Bearer REKA_API_KEY`.

        '
externalDocs:
  description: Reka API documentation
  url: https://docs.reka.ai