Organization
Get information about your organization.
Get Organization
GET /v1/org
Returns the organization associated with the API key.
Request
curl https://scribesight.com/api/v1/org \
-H "Authorization: Bearer sk_live_xxx"
Response
{
"data": {
"id": "org_xxxxxxxxxxxx",
"name": "Acme Inc",
"slug": "acme-inc",
"settings": {
"default_prompt_id": "prompt_xxxxxxxxxxxx"
},
"subscription": {
"status": "active",
"plan": "professional",
"current_period_end": "2026-02-15T00:00:00Z"
},
"usage": {
"transcription_minutes": {
"used": 145,
"limit": 500,
"resets_at": "2026-02-01T00:00:00Z"
},
"storage_gb": {
"used": 2.3,
"limit": 50
}
},
"created_at": "2025-06-15T10:30:00Z"
},
"meta": {
"request_id": "req_xxxxxxxxxxxx",
"timestamp": "2026-01-06T15:00:00Z"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Organization ID |
name | string | Organization name |
slug | string | URL-safe identifier |
settings.default_prompt_id | string | Default prompt for analyses |
subscription.status | string | active, trialing, past_due, canceled |
subscription.plan | string | Subscription plan name |
subscription.current_period_end | string | When current billing period ends |
usage.transcription_minutes | object | Transcription quota usage |
usage.storage_gb | object | Storage quota usage |
created_at | string | When organization was created |