Skip to main content

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

FieldTypeDescription
idstringOrganization ID
namestringOrganization name
slugstringURL-safe identifier
settings.default_prompt_idstringDefault prompt for analyses
subscription.statusstringactive, trialing, past_due, canceled
subscription.planstringSubscription plan name
subscription.current_period_endstringWhen current billing period ends
usage.transcription_minutesobjectTranscription quota usage
usage.storage_gbobjectStorage quota usage
created_atstringWhen organization was created