curl --request GET \
--url https://api.tryhamsa.com/v1/voice-agents/voice-dictionaries/{id} \
--header 'Authorization: <api-key>'{
"success": true,
"data": {
"id": "48f7656f-098b-4c43-b165-7cfd2cc8ac30",
"name": "Medical Terms Dictionary",
"words": [
{
"word": "acetaminophen",
"pronunciation": "uh-SEE-tuh-MIN-uh-fen"
}
],
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
}Retrieves a specific voice dictionary by its unique identifier.
curl --request GET \
--url https://api.tryhamsa.com/v1/voice-agents/voice-dictionaries/{id} \
--header 'Authorization: <api-key>'{
"success": true,
"data": {
"id": "48f7656f-098b-4c43-b165-7cfd2cc8ac30",
"name": "Medical Terms Dictionary",
"words": [
{
"word": "acetaminophen",
"pronunciation": "uh-SEE-tuh-MIN-uh-fen"
}
],
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
}Pass the API key in the Authorization header, You need to put Token keyword before the API key. e.g. 'Authorization: Token
UUID of the voice dictionary.
"48f7656f-098b-4c43-b165-7cfd2cc8ac30"
Was this page helpful?