SUTRA (Two AI) Models API

List available SUTRA models.

Operations 1

GET /models List models #

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/sutra-ai-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

sutra-ai-models-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SUTRA Chat Models API
  description: OpenAI-compatible REST API for the SUTRA family of multilingual large language models from Two AI (Numeric). The SUTRA-V2 model handles instruction-following and conversational tasks across 50+ languages, and the SUTRA-R0 model provides advanced multi-step reasoning. The same chat/completions endpoint serves both models. The documented base URL is https://api.numeric.tech/v2 and is also reachable as https://api.two.ai/v2; the OpenAI SDK can be pointed at this base_url directly.
  termsOfService: https://www.two.ai
  contact:
    name: Two AI (Numeric)
    url: https://docs.two.ai/docs
  version: '2.0'
servers:
- url: https://api.two.ai/v2
  description: SUTRA API (two.ai)
- url: https://api.numeric.tech/v2
  description: SUTRA API (documented Numeric host)
security:
- bearerAuth: []
tags:
- name: Models
  description: List available SUTRA models.
paths:
  /models:
    get:
      operationId: listModels
      tags:
      - Models
      summary: List models
      description: Lists the SUTRA models currently available to the authenticated account, following the OpenAI models list shape.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListModelsResponse'
        '401':
          description: Unauthorized - missing or invalid API key.
components:
  schemas:
    ListModelsResponse:
      type: object
      properties:
        object:
          type: string
          example: list
        data:
          type: array
          items:
            $ref: '#/components/schemas/Model'
    Model:
      type: object
      properties:
        id:
          type: string
          example: sutra-v2
        object:
          type: string
          example: model
        created:
          type: integer
          format: int64
        owned_by:
          type: string
          example: two-ai
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Provide your SUTRA API key as a Bearer token in the Authorization header - Authorization: Bearer <YOUR_SUTRA_API_KEY>.'