Skip to main content
Version: 2.0.0

Get a phoneme

This endpoint retrieves a phoneme.

HTTP Request

GET https://app.resemble.ai/api/v2/phonemes/<phonemeUuid>
URL ParametersTypeDescriptions
phonemeUuidstringUUID of the phoneme to retrieve

HTTP Response

{
"success": true,
"item": {
"uuid": <string>,
"alphabet": <string>,
"phonetic_transcription": <string>,
"word": <string>,
"created_at": <UTC Date>,
"updated_at": <UTC Date>,
}
}

Examples

NodeJS
1 2 3 4 5 6 7 import { Resemble } from '@resemble/node' Resemble.setApiKey('YOUR_API_TOKEN') const phonemeUuid = '...' const response = Resemble.v2.phonemes.get(phonemeUuid) const phoneme = response.item

Try it out

API Key:
Phoneme UUID: