For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • API Reference
      • GETList custom pronunciations
      • POSTCreate custom pronunciation
      • POSTBulk create pronunciations from ZIP
      • GETGet custom pronunciation
      • DELDelete custom pronunciation
      • PATCHToggle pronunciation active status
Status
LogoLogo
API ReferenceCustom Pronunciations

Create custom pronunciation

POST
https://app.resemble.ai/api/v2/pronunciations
POST
/api/v2/pronunciations
$curl -X POST https://app.resemble.ai/api/v2/pronunciations \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: multipart/form-data" \
> -F word="mounjaro" \
> -F audio=@string
1{
2 "success": true,
3 "item": {
4 "uuid": "string",
5 "word": "mounjaro",
6 "status": "ready",
7 "active": true,
8 "audio_url": "string",
9 "created_at": "2024-01-15T09:30:00Z",
10 "updated_at": "2024-01-15T09:30:00Z"
11 }
12}
Upload a single pronunciation with a reference audio file.
Was this page helpful?
Previous

Bulk create pronunciations from ZIP

Next
Built with

Authentication

AuthorizationBearer

API token from https://app.resemble.ai/account/api

Request

This endpoint expects a multipart form containing a file.
wordstringRequired

The word or phrase (2-100 characters). Letters, accented characters, apostrophes, hyphens, and spaces only.

audiofileRequired

Reference audio file (wav, flac, mp3, m4a, ogg, webm, aac). Duration 200ms-10s. Max 10MB.

Response

Pronunciation created
successboolean
itemobject

Errors

422
Unprocessable Entity Error