Documentation
Everything you need to integrate GPUSE AI models into your application.
Quick Start
Get started in seconds. No SDK required - just use any HTTP client.
Terminal
# Install nothing - just use curl!
curl -X POST "https://api-gpuse.maatrics.com/v1/whisperx/transcribe" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/audio.wav"}'Available Models
Choose the model that fits your use case. Each model has its own endpoint and documentation.
API Concepts
Authentication
All API requests require a Bearer token in the Authorization header.
Authorization: Bearer gs_sk_live_xxxxxxxxxxxxBase URL
All endpoints are relative to the base URL.
https://api-gpuse.maatrics.comAsync Processing
Jobs are processed asynchronously. Poll the job status or use webhooks.
GET /v1/jobs/{job_id}Job Status
After submitting a job, you can check its status using the job ID.
Check Job Status
curl https://api-gpuse.maatrics.com/v1/jobs/YOUR_JOB_ID \
-H 'Authorization: Bearer YOUR_API_KEY'Possible Statuses
queued
processing
completed
failed