# Transcribe an audio file
curl -X POST https://api.voxparse.com/v1/transcribe \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@recording.mp3" \
-F "model=standard"
# Chat with Apex (OpenAI-compatible)
curl -X POST https://api.voxparse.com/v1/apex/chat/completions \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"apex-latest","messages":[{"role":"user","content":"Hello"}]}'
# Check your balance
curl https://api.voxparse.com/v1/balance \
-H "X-API-Key: YOUR_API_KEY"