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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/argil-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 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
openapi: 3.2.0
info:
title: Argil Assets Voices API
version: '1.0'
description: The Argil API programmatically generates AI avatar videos. Create a video from moments (transcript or audio) mapped to an avatar and voice, render it asynchronously, clone avatars and voices, manage B-roll assets, and receive render events via webhooks. All requests authenticate with an `x-api-key` header.
contact:
name: Argil
url: https://www.argil.ai
termsOfService: https://www.argil.ai/terms
servers:
- url: https://api.argil.ai/v1
description: Argil production API
security:
- ApiKeyAuth: []
tags:
- name: Voices
description: Clone, list, and sync voices.
paths:
/voices:
post:
tags:
- Voices
operationId: createVoice
summary: Clone a voice
description: Clones a custom voice from an audio sample.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateVoiceRequest'
responses:
'201':
description: Voice created (cloning may be asynchronous).
content:
application/json:
schema:
$ref: '#/components/schemas/Voice'
'401':
$ref: '#/components/responses/Unauthorized'
'422':
$ref: '#/components/responses/ValidationError'
get:
tags:
- Voices
operationId: listVoices
summary: List voices
description: Returns all voices available to the account.
responses:
'200':
description: A list of voices.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Voice'
'401':
$ref: '#/components/responses/Unauthorized'
/voices/{id}:
parameters:
- $ref: '#/components/parameters/VoiceId'
get:
tags:
- Voices
operationId: getVoice
summary: Get a voice
description: Retrieves a single voice by its ID.
responses:
'200':
description: The requested voice.
content:
application/json:
schema:
$ref: '#/components/schemas/Voice'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/voices/sync:
post:
tags:
- Voices
operationId: syncVoices
summary: Sync voices
description: Re-syncs voices from underlying providers (ElevenLabs, Minimax) into the account's voice library.
responses:
'200':
description: Voices synced.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Voice'
'401':
$ref: '#/components/responses/Unauthorized'
components:
schemas:
Error:
type: object
properties:
message:
type: string
code:
type: string
statusCode:
type: integer
CreateVoiceRequest:
type: object
required:
- name
- sampleUrl
properties:
name:
type: string
sampleUrl:
type: string
format: uri
description: URL of an audio sample used to clone the voice.
Voice:
type: object
properties:
id:
type: string
name:
type: string
provider:
type: string
enum:
- ELEVENLABS
- MINIMAX
- ARGIL
status:
type: string
enum:
- PROCESSING
- READY
- FAILED
createdAt:
type: string
format: date-time
parameters:
VoiceId:
name: id
in: path
required: true
schema:
type: string
responses:
NotFound:
description: Resource not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
ValidationError:
description: Request validation failed.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Unauthorized:
description: Missing or invalid API key.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: x-api-key
description: API key issued in the Argil dashboard.