Textcortex Models API

Discover OpenAI-compatible TextCortex models.

Operations 2

GET /models List models #
GET /models/{model_id} Retrieve a model #

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/textcortex-models-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

textcortex-models-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: OpenAI-compatible TextCortex API for model discovery, chat completions, and responses.
  title: TextCortex Balance Models API
  version: 1.2026.07.20
servers:
- description: Production server
  url: https://api.textcortex.com/v1
security:
- BearerAuth: []
tags:
- description: Discover OpenAI-compatible TextCortex models.
  name: Models
paths:
  /models:
    get:
      description: Returns the TextCortex models available through the OpenAI-compatible public API.
      operationId: listModels
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListModelsResponse'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAIError'
          description: Missing or invalid API key
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAIError'
          description: Model catalog could not be listed
      summary: List models
      tags:
      - Models
  /models/{model_id}:
    get:
      description: Returns metadata for one TextCortex model available through the OpenAI-compatible public API.
      operationId: retrieveModel
      parameters:
      - description: TextCortex model id.
        in: path
        name: model_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelDetail'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAIError'
          description: Missing or invalid API key
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAIError'
          description: Unknown model
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAIError'
          description: Model could not be retrieved
      summary: Retrieve a model
      tags:
      - Models
components:
  schemas:
    ModelDetail:
      allOf:
      - $ref: '#/components/schemas/Model'
      - properties:
          served_from_country_code:
            description: ISO 3166-1 alpha-2 country code for the model deployment advertised by TextCortex. Europe-hosted metadata is used only when the model has an explicit Europe override.
            type:
            - string
            - 'null'
        required:
        - served_from_country_code
        type: object
    OpenAIError:
      properties:
        error:
          properties:
            code:
              type:
              - string
              - 'null'
            message:
              type: string
            param:
              type:
              - string
              - 'null'
            type:
              enum:
              - invalid_request_error
              - server_error
              type: string
          required:
          - message
          - type
          type: object
      required:
      - error
      type: object
    ListModelsResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Model'
          type: array
        object:
          enum:
          - list
          type: string
      required:
      - object
      - data
      type: object
    Model:
      properties:
        created:
          description: Unix timestamp for the model release date.
          type: integer
        id:
          description: TextCortex model id.
          example: kimi-k2-5
          type: string
        object:
          enum:
          - model
          type: string
        owned_by:
          example: textcortex
          type: string
      required:
      - id
      - object
      - created
      - owned_by
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: API key
      description: 'Send `Authorization: Bearer <api_key>`.'
      scheme: bearer
      type: http