Convai Custom LLM API

The Custom LLM API from Convai — 4 operation(s) for custom llm.

Operations 4

POST /custom-llm/register Register Custom LLM #
POST /custom-llm/update Update Custom LLM #
POST /custom-llm/deregister Deregister Custom LLM #
POST /custom-llm/list List Custom LLMs #

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/convai-com-custom-llm-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

convai-com-custom-llm-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Convai Custom LLM API
  version: '1.0'
  description: 'Register and manage custom OpenAI-compatible LLM endpoints to use as the

    reasoning backbone for Convai characters. Lets Enterprise customers route

    character responses through their own model deployments. Enterprise tier.

    '
servers:
- url: https://api.convai.com
security:
- ConvaiApiKey: []
tags:
- name: Custom LLM
paths:
  /custom-llm/register:
    post:
      summary: Register Custom LLM
      operationId: registerCustomLLM
      tags:
      - Custom LLM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - model_group_name
              - model_name
              - api_key
              - base_url
              properties:
                model_group_name:
                  type: string
                model_name:
                  type: string
                api_key:
                  type: string
                base_url:
                  type: string
                  format: uri
                is_uncensored:
                  type: boolean
                  default: false
      responses:
        '200':
          description: Registered
  /custom-llm/update:
    post:
      summary: Update Custom LLM
      operationId: updateCustomLLM
      tags:
      - Custom LLM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - model_group_name
              properties:
                model_group_name:
                  type: string
                model_name:
                  type: string
                api_key:
                  type: string
                base_url:
                  type: string
                  format: uri
                is_uncensored:
                  type: boolean
      responses:
        '200':
          description: Updated
  /custom-llm/deregister:
    post:
      summary: Deregister Custom LLM
      operationId: deregisterCustomLLM
      tags:
      - Custom LLM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - model_group_name
              properties:
                model_group_name:
                  type: string
      responses:
        '200':
          description: Deregistered
  /custom-llm/list:
    post:
      summary: List Custom LLMs
      operationId: listCustomLLMs
      tags:
      - Custom LLM
      responses:
        '200':
          description: Custom LLM list
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    model_group_name:
                      type: string
                    model_name:
                      type: string
                    base_url:
                      type: string
components:
  securitySchemes:
    ConvaiApiKey:
      type: apiKey
      in: header
      name: CONVAI-API-KEY