> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pureframe.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Schema

> Returns an OpenAI-compatible tool schema for all available agent tools.



## OpenAPI

````yaml /openapi.json get /v1/agent/schema.json
openapi: 3.1.0
info:
  title: Pureframe API
  version: v1
  description: >-
    The Pureframe API lets you upload videos, index them for semantic search,
    and retrieve timestamped clips matching text queries or reference images.
    All endpoints require a Bearer API key (`Authorization: Bearer pf_...`).
  contact:
    url: https://pureframe.ai
    email: hello@pureframe.ai
  x-logo:
    url: https://pureframe.ai/logo.png
servers:
  - url: https://api.pureframe.ai
    description: Production
security: []
tags: []
paths:
  /v1/agent/schema.json:
    get:
      tags:
        - Agent
      summary: Agent Schema
      description: Returns an OpenAI-compatible tool schema for all available agent tools.
      operationId: agent_schema_v1_agent_schema_json_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````