# StableSocial Instagram Hashtag Search

> StableSocial Instagram 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 Instagram for public posts and reels by hashtag, with optional date and media type filters, returning Google-indexed results.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/instagram/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-instagram-hashtag-search-202c6219
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2guHOoR8nbrhZsP9Fcw2h

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-instagram-hashtag-search-202c6219 -d '<json body>'
```

Example prompt: Search Instagram for all posts and reels tagged #sustainablefashion from the last week and show me what people are sharing.

## When to prefer this

Choose this endpoint when you need public Instagram posts or reels filtered by hashtag without needing an official Instagram API key or OAuth setup. It is ideal for pay-per-use scraping scenarios, campaign monitoring, or competitive research where subscriptions are impractical. Best when you want Google-indexed recency filtering (last hour to last year) rather than real-time scraping. Prefer alternatives if you need private content, exact post counts, or real-time engagement metrics.

## Known failure modes

- Hashtag not found or no indexed posts — empty results returned
- Invalid media_type or date_posted enum value — validation error
- Private or deleted posts not included since only Google-indexed public content is returned
- Cursor from a different session or stale cursor may return unexpected results
- Rate or payment failure if USDC balance is insufficient for the $0.06 per-call fee

## How this service works

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

## Output

Returns a list of Google-indexed Instagram posts and/or reels matching the given hashtag, filtered by media type and date range. Each result typically includes post metadata such as URLs, captions, and publication dates. Also returns a cursor for paginating through additional result pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "The cursor returned by the previous response. In this version, it is the next Google results page number."
  },
  "hashtag": {
   "type": "string",
   "minLength": 1,
   "description": "The hashtag to search for. Include or omit the #."
  },
  "media_type": {
   "enum": [
    "all",
    "reels"
   ],
   "type": "string",
   "description": "Use all to search public posts and reels, or reels to only return reels. Defaults to all."
  },
  "date_posted": {
   "enum": [
    "last-hour",
    "last-day",
    "last-week",
    "last-month",
    "last-year"
   ],
   "type": "string",
   "description": "Only return Google-indexed posts found in this relative window."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-instagram-hashtag-search-202c6219/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)
