API Playground
Test VoiceMaster API endpoints in an interactive sandbox. Explore parameters, preview requests, and view mock responses.
Showing mock/demo data — connect the API to see live results.
Endpoint
Match a spoken or typed phrase against the phrase library.
Parameters
Request Preview
curl -X POST "https://api.voicemaster.ai/v1/phrase/match" \
-H "Authorization: Bearer vm_live_****" \
-H "Content-Type: application/json" \
-d '{
"text": "Ete sen?",
"language": "twi",
"dialect": "Asante Twi"
}'Response
Send a request to see the response.
Code Samples
import { VoiceMaster } from '@voicemaster/sdk';
const vm = new VoiceMaster({ apiKey: 'vm_live_****' });
const res = await vm.phraseMatch({
"text": "Ete sen?",
"language": "twi",
"dialect": "Asante Twi"
});
console.log(res);