# StableSocial Instagram Tag Search

> StableSocial Instagram Tag Search is a paid API for AI agents from socialx402.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Search Instagram hashtags/tags and retrieve associated posts, metadata, and trending content via pay-per-request API.

## Facts

- Endpoint: POST https://socialx402.com/api/instagram/search-tags
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-instagram-tag-search-202c028e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nSwzgEMTaP61YIQR9fLKB

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-tag-search-202c028e -d '<json body>'
```

Example prompt: Search Instagram for posts tagged with #sustainablefashion and show me what comes up — I want to see how popular the tag is and what kind of content people are posting.

## When to prefer this

Choose this endpoint when you need Instagram hashtag search data without setting up OAuth, managing API credentials, or committing to a subscription. Ideal for one-off lookups, agent workflows that need pay-as-you-go social data, or when Instagram's official API access is unavailable. Best for discovering content trends and exploring tag popularity programmatically.

## Known failure modes

- Tag not found or no results for obscure hashtag — empty results array returned
- Rate limiting or payment failure via x402 protocol — 402 Payment Required response
- Invalid or malformed tag input — 400 Bad Request
- Instagram data temporarily unavailable — 503 or timeout error
- Tag contains restricted or banned content — empty or filtered results

## 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 Instagram posts and/or metadata associated with the searched hashtag, including post content, media references, post counts, and related tag information. Delivered as structured JSON without requiring an Instagram account or OAuth credentials.

## Example request

```json
{
 "tag": "artificialintelligence",
 "post_id": "123456789",
 "comment_id": "987654321",
 "max_page_size": 50
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tag": {
   "type": "string",
   "minLength": 1,
   "description": "Instagram tag/hashtag (without #)"
  },
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-instagram-tag-search-202c028e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from socialx402.com](https://www.zero.xyz/host/socialx402.com/llms.txt)
