# StableSocial YouTube Hashtag Search

> StableSocial YouTube Hashtag Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Search YouTube for videos by hashtag, with optional filtering for Shorts only and pagination support

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/youtube/search/hashtag
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-youtube-hashtag-search-100bc4f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_op_mhQBL_hn8VQClCxPZX

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 stablesocial-youtube-hashtag-search-100bc4f5 -d '<json body>'
```

Example prompt: Search YouTube for all videos tagged with #travelitaly and give me the results — include both regular videos and Shorts.

## When to prefer this

Use this endpoint when you need YouTube hashtag search results without a Google/YouTube API key, want to avoid YouTube Data API quota limits, or need access to both regular videos and Shorts filtered by hashtag. Prefer this over YouTube's official API when cost-per-call economics fit your use case and you need no authentication setup.

## Known failure modes

- Invalid or empty hashtag returns an error
- Invalid content type enum value causes a bad request
- YouTube anti-scraping measures may cause intermittent failures or empty results
- Expired or invalid continuation token may return an error or restart pagination
- Payment failure (non-402-compliant client) blocks the request entirely

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

A list of YouTube videos matching the given hashtag, including video metadata (titles, thumbnails, view counts, channel info, etc.) and a continuation token for fetching the next page of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "enum": [
    "all",
    "shorts"
   ],
   "type": "string",
   "description": "Search for all types of content or only shorts"
  },
  "hashtag": {
   "type": "string",
   "minLength": 1,
   "description": "Hashtag to search for"
  },
  "continuationToken": {
   "type": "string",
   "description": "Continuation token to get more videos. Get 'continuationToken' from previous response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-youtube-hashtag-search-100bc4f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
