Entity Detection

Extracts named entities — people, organizations, products, and locations — mentioned during the call. Ideal for CRM auto-population, compliance cross-referencing, and knowledge base enrichment.

curl -X POST https://api.voxparse.com/v1/transcribe \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "[email protected]" \
  -F "plan=pro" \
  -F "entity_detection=true"
import requests

r = requests.post("https://api.voxparse.com/v1/transcribe",
    headers={"X-API-Key": "YOUR_API_KEY"},
    files={"file": open("recording.mp3", "rb")},
    data={"plan": "pro", "entity_detection": "true"})
print(r.json()["ai_analysis"]["entities"])
$ch = curl_init("https://api.voxparse.com/v1/transcribe");
curl_setopt_array($ch, [
    CURLOPT_POST => true,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HTTPHEADER => ["X-API-Key: YOUR_API_KEY"],
    CURLOPT_POSTFIELDS => [
        "file" => new CURLFile("recording.mp3"),
        "plan" => "pro",
        "entity_detection" => "true"
    ]
]);
$result = json_decode(curl_exec($ch), true);
print_r($result["ai_analysis"]["entities"]);
Response field
"entities": {
  "people": ["James Rivera", "Karen"],
  "organizations": ["Greenfield Dental Group", "USPS"],
  "products": ["Premium SEO Package", "Google Ads Management"],
  "locations": ["Portland, OR"]
}