# SocialFetch YouTube Community Post Fetcher

> SocialFetch YouTube Community Post Fetcher 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).

Fetches the content and metadata of a single YouTube community post by its public URL.

## Facts

- Endpoint: POST https://api.socialfetch.dev/v1/youtube/community-posts
- 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-youtube-community-post-fetcher-64ed5f4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SE5frIJtqSJdZUWGdh925

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-youtube-community-post-fetcher-64ed5f4f -d '<json body>'
```

Example prompt: Can you pull up the content of this YouTube community post for me? Here's the URL: https://www.youtube.com/post/UgkxXYZ1234567890

## When to prefer this

Use this endpoint when you need to programmatically retrieve the content of a specific YouTube community post given its URL, especially for monitoring creator announcements, aggregating social content, or archiving posts from YouTube channels. Prefer this over manual scraping or generic web scrapers that may not parse YouTube community post structure correctly.

## Known failure modes

- Invalid or malformed YouTube community post URL returns an error
- Private or deleted community posts cannot be fetched
- Non-community-post YouTube URLs (e.g. video URLs) may return an error or no data
- Rate limiting or payment failure may block the request
- Network timeouts if YouTube is slow to respond

## Output

Returns the full details of the specified YouTube community post, including post text/content, author/channel information, media attachments (images, polls), publish date, and engagement metrics such as likes and comments.

## 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": "Public YouTube community post URL."
      }
     }
    }
   },
   "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-youtube-community-post-fetcher-64ed5f4f/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)
