Skip to main content

List Customer Transcripts

List transcriptions across all customers.

Endpoint

GET /api/v3/reseller/transcripts

Query Parameters

ParameterTypeDescription
customer_idintegerFilter by customer
pageintegerPage number
per_pageintegerItems 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")