Skip to main content

Generate developer token

1

Generate a developer token using your admin token

Use your admin token to create developer tokens (also called usage tokens) for your developer team.
curl -X POST https://voiceharbor.ai/api/admin/developer-token \
  -H "Authorization: Bearer YOUR_ADMIN_TOKEN"
Response:
{
  "developerToken": "abc123-usage-token"
}

Minimal Biometric Redaction (uses defaults)

curl -X POST https://voiceharbor.ai/api/speech-to-speech-biometric-redaction \
  -H "Authorization: Bearer developerToken" \
  -F "source_audio=@./martin.wav;type=audio/wav" \
  --output result.wav
I