Skip to main content

Getting Started

GVR provides REST APIs for voice analysis and name intelligence. Use these docs to understand authentication, request formats, quotas, and each endpoint before you integrate in production.

Base URL

All API paths in this documentation are relative to:

https://api.genderrecognition.com

API families

Voice APIs

  • Gender by Voice API
  • Age by Voice API
  • Deep Voice Fake API

Voice APIs accept audio files. Gender by Voice also supports an audio URL endpoint.

Name Intelligence APIs

  • Gender by Name API
  • Age by Name API
  • Ethnicity by Name API
  • Language by Name API
  • CSV Name Intelligence API

Single name APIs accept JSON payloads with first and last name fields. CSV processing accepts multipart file uploads.

Authentication model

Developer APIs use an apiKey request header:

apiKey: YOUR_API_KEY

Do not send API keys from public browser code. Use a server-side integration when possible.

First request

curl -X POST "https://api.genderrecognition.com/v1/voice-gender-recognition/api" \
-H "apiKey: YOUR_API_KEY" \
-F "file=@audio.wav"

Suggested next steps

  1. Read Authentication.
  2. Generate an API key from the GVR application.
  3. Review Quotas and Usage.
  4. Open the API guide for the product you want to integrate.