Sarj AI Developer API Models API

The Models API from Sarj AI Developer API — 2 operation(s) for models.

Operations 2

GET /v1/models List Sarj TTS models #
GET /v1/models/{model_id} Retrieve Sarj TTS #

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/sarj-ai-developer-api-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 email required.

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

OpenAPI Specification

sarj-ai-developer-api-models-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sarj Ai Developer Models API
  version: 0.3.0
  description: 'Operations tagged Models across 2 of this provider''s published API definitions: sarj-ai-developer-api-models-api-openapi.yml, sarj-ai-developer-api-tts-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://platform-api.sarj.ai/api/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Models
paths:
  /v1/models:
    get:
      summary: List Sarj TTS models
      description: Return the single model served by this API.
      operationId: list_models_v1_models_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelListResponse'
      tags:
      - Models
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/models/{model_id}:
    get:
      summary: Retrieve Sarj TTS
      description: Retrieve canonical metadata for `sarj-tts` or a historical request alias.
      operationId: get_model_v1_models__model_id__get
      parameters:
      - name: model_id
        in: path
        required: true
        schema:
          type: string
          title: Model Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelObject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
      tags:
      - Models
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    ModelObject:
      properties:
        id:
          type: string
          const: sarj-tts
          title: Id
          default: sarj-tts
        object:
          type: string
          const: model
          title: Object
          default: model
        created:
          type: integer
          minimum: 0.0
          title: Created
          default: 1786214180
        owned_by:
          type: string
          const: sarj-ai
          title: Owned By
          default: sarj-ai
        permission:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Permission
        root:
          type: string
          const: sarj-tts
          title: Root
          default: sarj-tts
        parent:
          type: 'null'
          title: Parent
      type: object
      title: ModelObject
      description: Stable model metadata returned by the discovery endpoints.
    ModelListResponse:
      properties:
        object:
          type: string
          const: list
          title: Object
          default: list
        data:
          items:
            $ref: '#/components/schemas/ModelObject'
          type: array
          title: Data
      type: object
      required:
      - data
      title: ModelListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
x-refined-from:
- sarj-ai-developer-api-models-api-openapi.yml
- sarj-ai-developer-api-tts-openapi.json