Keyframe Labs Sessions API

The Sessions API from Keyframe Labs — 1 operation(s) for sessions.

Operations 1

POST /sessions Create session #

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/keyframe-labs-sessions-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

keyframe-labs-sessions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LLM models Sessions API
  version: 1.0.0
servers:
- url: https://api.keyframelabs.com/v1
tags:
- name: Sessions
paths:
  /sessions:
    post:
      tags:
      - Sessions
      operationId: createSession
      security:
      - bearerAuth: []
      summary: Create session
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSessionRequest'
      responses:
        '200':
          description: Session created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSessionResponse'
        '403':
          description: Model not allowed for plan
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPExceptionResponse'
              examples:
                modelNotAllowed:
                  value:
                    detail: Plan 'free' does not support model persona-1.5-live
        '503':
          description: No capacity available
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPExceptionResponse'
              examples:
                busy:
                  value:
                    detail: Our servers are busy. Please try again in a moment.
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPExceptionResponse'
              examples:
                internal:
                  value:
                    detail: Internal server error
components:
  schemas:
    CreateSessionResponse:
      type: object
      additionalProperties: false
      required:
      - server_url
      - participant_token
      - agent_identity
      properties:
        server_url:
          type: string
          description: WebRTC connection URL
        participant_token:
          type: string
          description: JWT for 'source' participant to pass audio to persona
        agent_identity:
          type: string
          description: Identity of the persona in the WebRTC session
    CreateSessionRequest:
      description: Request to create a session.
      oneOf:
      - title: By Persona ID
        type: object
        additionalProperties: false
        required:
        - persona_id
        properties:
          persona_id:
            type: string
            description: ID of persona to use
      - title: By Persona Slug
        type: object
        additionalProperties: false
        required:
        - persona_slug
        properties:
          persona_slug:
            type: string
            description: Slug of persona to use
    HTTPExceptionResponse:
      type: object
      additionalProperties: true
      required:
      - detail
      properties:
        detail:
          description: Error detail
          anyOf:
          - type: string
          - type: object
          - type: array
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer