Sarj AI Developer API Voices API

The Voices API from Sarj AI Developer API — 3 operation(s) for voices.

Operations 5

GET /v1/voices List available voices #
POST /v1/voices/profiles Create Profile #
GET /v1/voices/profiles/{profile_id} Get Profile #
DELETE /v1/voices/profiles/{profile_id} Delete Profile #
PATCH /v1/voices/profiles/{profile_id} Update Profile #

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-voices-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-voices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sarj Ai Developer Voices API
  version: 0.3.0
  description: 'Operations tagged Voices across 2 of this provider''s published API definitions: sarj-ai-developer-api-tts-openapi.json, sarj-ai-developer-api-voices-api-openapi.yml. 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: Voices
paths:
  /v1/voices:
    get:
      summary: List available voices
      description: Authoritative runtime voice discovery. Entries with `type=builtin` are the deployed Sarj voice catalog; the response also identifies design modes, compatible presets, and saved clone profiles.
      operationId: list_voices_v1_voices_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceListResponse'
      security:
      - BearerAuth: []
      tags:
      - Voices
  /v1/voices/profiles:
    post:
      summary: Create Profile
      operationId: create_profile_v1_voices_profiles_post
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_create_profile_v1_voices_profiles_post'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
      tags:
      - Voices
  /v1/voices/profiles/{profile_id}:
    get:
      summary: Get Profile
      operationId: get_profile_v1_voices_profiles__profile_id__get
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          pattern: ^[a-zA-Z0-9_-]{1,64}$
          title: Profile Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
      tags:
      - Voices
    delete:
      summary: Delete Profile
      operationId: delete_profile_v1_voices_profiles__profile_id__delete
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          pattern: ^[a-zA-Z0-9_-]{1,64}$
          title: Profile Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
      tags:
      - Voices
    patch:
      summary: Update Profile
      operationId: update_profile_v1_voices_profiles__profile_id__patch
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          pattern: ^[a-zA-Z0-9_-]{1,64}$
          title: Profile Id
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_update_profile_v1_voices_profiles__profile_id__patch'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - BearerAuth: []
      tags:
      - Voices
components:
  schemas:
    VoiceProfileResponse:
      properties:
        profile_id:
          type: string
          pattern: ^[a-zA-Z0-9_-]{1,64}$
          title: Profile Id
        name:
          type: string
          minLength: 1
          title: Name
        ref_text:
          anyOf:
          - type: string
          - type: 'null'
          title: Ref Text
        created_at:
          type: string
          title: Created At
      type: object
      required:
      - profile_id
      - name
      - created_at
      title: VoiceProfileResponse
    Body_create_profile_v1_voices_profiles_post:
      properties:
        profile_id:
          type: string
          pattern: ^[a-zA-Z0-9_-]{1,64}$
          title: Profile Id
          description: Unique identifier. Alphanumeric, dashes, underscores only.
        ref_audio:
          type: string
          contentMediaType: application/octet-stream
          title: Ref Audio
        ref_text:
          anyOf:
          - type: string
            maxLength: 10000
          - type: 'null'
          title: Ref Text
        overwrite:
          type: boolean
          title: Overwrite
          default: false
      type: object
      required:
      - profile_id
      - ref_audio
      title: Body_create_profile_v1_voices_profiles_post
    Body_update_profile_v1_voices_profiles__profile_id__patch:
      properties:
        ref_audio:
          anyOf:
          - type: string
            contentMediaType: application/octet-stream
          - type: 'null'
          title: Ref Audio
        ref_text:
          anyOf:
          - type: string
            maxLength: 10000
          - type: 'null'
          title: Ref Text
      type: object
      title: Body_update_profile_v1_voices_profiles__profile_id__patch
    VoiceListResponse:
      properties:
        voices:
          items:
            $ref: '#/components/schemas/VoiceEntry'
          type: array
          title: Voices
        design_attributes:
          additionalProperties:
            items:
              type: string
            type: array
          type: object
          title: Design Attributes
        languages:
          additionalProperties:
            type: string
          type: object
          title: Languages
        total:
          type: integer
          minimum: 0.0
          title: Total
      type: object
      required:
      - voices
      - design_attributes
      - languages
      - total
      title: VoiceListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    VoiceEntry:
      properties:
        id:
          type: string
          minLength: 1
          title: Id
        type:
          type: string
          minLength: 1
          title: Type
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        language:
          anyOf:
          - type: string
          - type: 'null'
          title: Language
        language_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Language Name
        dialect:
          anyOf:
          - type: string
          - type: 'null'
          title: Dialect
        gender:
          anyOf:
          - type: string
          - type: 'null'
          title: Gender
        profile_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Profile Id
        created_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Created At
        ref_text:
          anyOf:
          - type: string
          - type: 'null'
          title: Ref Text
        generation_defaults:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Generation Defaults
      type: object
      required:
      - id
      - type
      title: VoiceEntry
    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-tts-openapi.json
- sarj-ai-developer-api-voices-api-openapi.yml