Developer integrations

Welcome to the developer integrations portal. Our developer endpoints allow you to integrate high-quality transcribing and automated summarization services directly into your own custom applications.

Billing and credit balance

Every task processed via the integrations interface consumes your account credits according to these values:

TranscriptionDeducts 1 credit per file or video processed.
Automated summarizationDeducts 1 extra credit per summary request.

Base endpoint

Request destination

All request paths described in these docs are relative to the following base service endpoint:

https://api.scribia.co/api/v1/apis

Authentication

Authorizing requests

To authenticate your requests, you must include your generated key in either the x-api-key header or the standard bearer token authorization header:

x-api-key: scribia_...

# or
Authorization: Bearer scribia_...

Request authorization example

curl -X Get "https://api.scribia.co/api/v1/apis/status/your_task_id" \
  -H "x-api-key: scribia_your_key_here"