# Transcript schema (/docs/schema/transcript) {/* AUTO-GENERATED. Do not hand-edit. Source: packages/social-api/src/docs/generate-schema-pages.ts Regenerate with: pnpm -F @repo/social-api generate:docs Field tables derive from the canonical Zod schemas (packages/social-api/src/schemas/canonical.ts); availability + equivalence derive from the registry fieldMaps. */} Transcript schema [#transcript-schema] Every SocialCrawl endpoint that returns a video or audio transcript gives you this exact shape, whatever the source platform. Write your parser once and the same code reads transcript data from every platform below. That is the unified schema: one contract instead of a dozen raw upstream formats. Field reference [#field-reference] | Field | Type | Nullable | Description | | ------------- | ---------- | -------- | -------------------------------------------------------------------------------------------------------------------------------- | | `transcript` | `string` | Yes | Full transcript text. Plain string for TikTok/Facebook/Twitter; see `transcripts` for Instagram and the segmented YouTube shape. | | `transcripts` | `object[]` | Yes | Instagram transcript entries. Each item has a `text` field with the full transcript for that track. | Platform availability [#platform-availability] 8 platforms return the `Transcript` shape across 10 endpoints. This is a **passthrough** shape: the outer contract above is guaranteed on every platform, and each platform's own extra fields are preserved untouched rather than remapped, so there is no per-field availability matrix.