# SocialFetch LinkedIn Post Video Transcript

> SocialFetch LinkedIn Post Video Transcript is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Retrieves the spoken transcript of a video embedded in a LinkedIn post, given its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/linkedin/posts/transcript
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-linkedin-post-video-transcript-c1d7b098
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6tXkNqssu2kFH79jO32rn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-linkedin-post-video-transcript-c1d7b098
```

Example prompt: Can you get me the full transcript of the video in this LinkedIn post: https://www.linkedin.com/posts/example-user_some-post-id?

## When to prefer this

Use this endpoint when you need the spoken text content from a video embedded in a LinkedIn post. Ideal for summarizing LinkedIn video content, making it searchable, or analyzing what a speaker said without watching the video. Prefer over manual transcription tools when automating LinkedIn content pipelines.

## Known failure modes

- LinkedIn post URL does not contain a video — no transcript available
- Post is private or requires authentication — access denied
- Invalid or malformed LinkedIn post URL — request fails validation
- Video has no speech or transcript data available — empty result
- LinkedIn rate limiting or blocking causes fetch failure
- Post has been deleted or is no longer accessible

## How this service works

Get the transcript for a LinkedIn post video by URL.

## Output

The agent receives the spoken transcript text extracted from the video embedded in the specified LinkedIn post, returned as structured output containing the transcribed dialogue or narration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Link to the LinkedIn post whose video transcript should be returned."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-linkedin-post-video-transcript-c1d7b098/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
