List Customers
Retrieve all customer organizations.
Endpoint
GET /api/v3/reseller/customers
Query Parameters
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number |
per_page | integer | Items per page (max 100) |
plan | string | Filter by plan |
status | string | Filter by status |
Response
{
"count": 25,
"total_results": 150,
"result": [
{
"id": 123,
"name": "Acme Corporation",
"email": "admin@acme.com",
"plan": "gold",
"status": "active",
"usage": {
"transcription_minutes": 450,
"quota_minutes": 10000
},
"created_at": "2025-01-17T10:00:00Z"
}
]
}
Examples
cURL
curl https://api.scriptix.io/api/v3/reseller/customers \
-H "Authorization: Bearer YOUR_API_KEY"
Python
response = requests.get(
'https://api.scriptix.io/api/v3/reseller/customers',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
params={'plan': 'gold', 'per_page': 100}
)
customers = response.json()
for customer in customers['result']:
print(f"{customer['name']}: {customer['usage']['transcription_minutes']} min used")