LinkedIn
GET /v1/linkedin/post-transcript

LinkedIn Post Transcript API

LinkedIn post text as a transcript — paragraph segments, timingSource none. Flat 1 credit.

1 credit per request
TL;DR
LinkedIn post text as a transcript — paragraph segments, timingSource none. Flat 1 credit. The LinkedIn Post Transcript API (LinkedIn) is a single authenticated GET request to /v1/linkedin/post-transcript that responds with clean JSON and costs 1 credit. Pass cache=true for a free 24h cache hit; default is always fresh. Start with 100 free credits — no credit card.

What is the LinkedIn Post Transcript API?

Paste a LinkedIn post/activity URL and get the public post body as structured text: transcript, wordCount, author, publishedAt, and transcriptSegments split on blank-line paragraphs (including NBSP gaps). timingSource is always "none" today (native and Apify) — no caption track or Whisper. When timingSource is "none", segment start/duration/timestamp are omitted (returned only when timingSource is "captions"). Each segment has index, wordCount, charStart/charEnd into transcript. estimatedReadSeconds is a single top-level 200 wpm estimate — never inside duration. Flat 1 credit.

What you get

  • Full transcript text with start/end timestamps when available
  • Auto-detected language and segment count
  • AI audio transcription fallback when no captions exist
  • Clean JSON ready for search, subtitles, or AI pipelines

Try it

Open in Playground

Fill in the parameters below and copy a ready-to-run request, or open the live Playground to run it against your account (no API key paste).

Parameters

Sign in to run live
curl "https://api.captapi.com/v1/linkedin/post-transcript?url=https%3A%2F%2Fwww.linkedin.com%2Fposts%2Fmicrosoft_the-most-meaningful-breakthroughs-happen-activity-7477715981667086336-x68i" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

Edit the parameters and the code updates instantly. Switch languages and hit copy.

Example response

{
  "success": true,
  "data": {
    "platform": "linkedin",
    "url": "https://www.linkedin.com/posts/microsoft_the-most-meaningful-breakthroughs-happen-activity-7477715981667086336-x68i",
    "transcript": "The most meaningful breakthroughs happen when technology is built with people in mind.\n \nThat was the message at Microsoft Build this month, where we announced a host of new tools to help developers build, dream and create. \n \nIn June’s edition of The Monthly Tech-In, we’re sharing stories from Build and beyond about the developers, founders and communities who are using AI to tackle real-world challenges, from helping creators protect their work to advancing more inclusive AI systems.\n \nRead more about the people and innovations who are shaping what's next:",
    "transcriptSegments": [
      {
        "text": "The most meaningful breakthroughs happen when technology is built with people in mind.",
        "index": 0,
        "wordCount": 13,
        "charStart": 0,
        "charEnd": 86
      },
      {
        "text": "That was the message at Microsoft Build this month, where we announced a host of new tools to help developers build, dream and create.",
        "index": 1,
        "wordCount": 24,
        "charStart": 89,
        "charEnd": 223
      },
      {
        "text": "In June’s edition of The Monthly Tech-In, we’re sharing stories from Build and beyond about the developers, founders and communities who are using AI to tackle real-world challenges, from helping creators protect their work to advancing more inclusive AI systems.",
        "index": 2,
        "wordCount": 40,
        "charStart": 227,
        "charEnd": 490
      },
      {
        "text": "Read more about the people and innovations who are shaping what's next:",
        "index": 3,
        "wordCount": 12,
        "charStart": 493,
        "charEnd": 564
      }
    ],
    "wordCount": 89,
    "segments": 4,
    "author": {
      "name": "Microsoft",
      "url": "https://www.linkedin.com/company/microsoft/posts"
    },
    "publishedAt": "2026-07-04 13:19:24",
    "timingSource": "none",
    "estimatedReadSeconds": 27,
    "language": null
  }
}

Billing metadata is returned in response headers: X-Captapi-Credits (credits charged), X-Captapi-Cache (hit or miss), and X-Captapi-Source. Failed requests (4xx/5xx) are never charged. See the full list of error codes in the error reference.

Response structure

A successful call returns success, cached, creditsUsed, and a data object with the following fields:

Top-level fields

  • platformPlatform identifier for this response (matches the endpoint's platform).
  • urlCanonical URL of the item.
  • transcriptFull LinkedIn post body text (not speech-to-text from a video).
  • wordCountWord count of the full transcript (emoji-only tokens count as 0; URLs count as 1).
  • segmentsNumber of paragraph segments in transcriptSegments.
  • publishedAtISO-8601 when guest HTML/JSON-LD exposes it (including VideoObject datePublished on ugcPost URLs).
  • timingSourceAlways "none" on this endpoint today (native and Apify). "captions" is reserved for future cue support — do not branch on it; nothing emits it yet.
  • estimatedReadSecondsWhole-transcript reading-time estimate at 200 wpm. Not per-segment duration.
  • languageAlways null today — LinkedIn text posts have no speech language. Present so clients share a schema with Whisper transcript endpoints.

Transcript segments

Each item in transcriptSegments contains:

  • textText content.
  • index0-based segment order within transcriptSegments.
  • wordCountWord count of the full transcript (emoji-only tokens count as 0; URLs count as 1).
  • charStartStart offset into transcript (transcript.slice(charStart, charEnd) === text).
  • charEndEnd offset into transcript (exclusive).

Author

The author object contains:

  • nameName of the item or account. On profile endpoints: deprecated alias of displayName (one release).
  • urlCanonical URL of the item.

Parameters

NameTypeRequiredDescription
urlstringYesLinkedIn post or activity URL. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble.
cachebooleanNoSet true to serve from the 24h response cache (0 credits on hit). Default false — always fetch fresh. Envelope includes cached + cachedAt on hits.

Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs 1 credit. Pass cache=true for a free 24h cache hit; default is always fresh.

Using an AI agent? This endpoint is the MCP tool linkedin_post_transcript via @captapi/mcp. Set it up →

How it works

  1. 1. Sign up — get 100 free credits, no card required.
  2. 2. Create a key from your dashboard.
  3. 3. Send one request to /v1/linkedin/post-transcript and parse the JSON response.

Use cases

Accessibility

Provide captions and transcripts for hearing-impaired users.

Content Analysis

Analyze spoken content for keywords, topics, and sentiment.

Search & Discovery

Make video content searchable by text.

Content Creation

Extract quotes and key phrases from videos.

Language Learning

Provide text alongside audio for language learners.

Research

Analyze large volumes of video content efficiently.

SEO

Extract text content for search engine optimization.

Frequently asked questions

What does the LinkedIn Post Transcript API do?+

The LinkedIn Post Transcript API lets you extract the full, timestamped transcript from a public LinkedIn post using one GET request to /v1/linkedin/post-transcript. It returns clean JSON — no OAuth or infrastructure setup required.

How many credits does the LinkedIn Post Transcript API cost?+

Each successful call costs 1 credit. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Failed or empty results are never charged.

Do I need a LinkedIn API key or OAuth?+

No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.

Is the LinkedIn Post Transcript API suitable for production use?+

Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Use it for analytics, monitoring, and content automation.

More LinkedIn APIs

Ready to use the LinkedIn Post Transcript API?

Sign up, grab your key, and make your first call in 60 seconds.