List Customer Transcripts
List transcriptions across all customers.
Endpoint
GET /api/v3/reseller/transcripts
Query Parameters
| Parameter | Type | Description |
|---|---|---|
customer_id | integer | Filter by customer |
page | integer | Page number |
per_page | integer | Items per page |
Response
{
"count": 25,
"total_results": 500,
"result": [
{
"id": "stt_abc123",
"customer_id": 123,
"customer_name": "Acme Corp",
"status": "completed",
"duration_seconds": 3600,
"created_at": "2025-01-17T10:00:00Z"
}
]
}
Examples
cURL
curl https://api.scriptix.io/api/v3/reseller/transcripts \
-H "Authorization: Bearer YOUR_API_KEY"
Python
response = requests.get(
'https://api.scriptix.io/api/v3/reseller/transcripts',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
params={'customer_id': 123}
)
transcripts = response.json()
for t in transcripts['result']:
print(f"{t['customer_name']}: {t['duration_seconds']}s")