# StableSocial Instagram Posts

> StableSocial Instagram Posts 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).

Fetches Instagram posts data for a given account or query via pay-per-request, no subscription required

## Facts

- Endpoint: POST https://socialx402.com/api/instagram/posts
- 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-posts-0d4ba148
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AOV-nxujhk_e7V_opeKCO

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-posts-0d4ba148 -d '<json body>'
```

Example prompt: Pull the most recent Instagram posts for the account @glossier — I want to see what they've been posting, including captions and engagement numbers.

## When to prefer this

Choose this endpoint when you need Instagram post data on a pay-per-request basis without committing to a subscription or managing OAuth credentials. Ideal for sporadic or low-volume lookups where predictable per-call pricing ($0.06 USDC) is preferable to monthly plans.

## Known failure modes

- Invalid or non-existent Instagram username returns empty results or 404
- Payment failure via x402 protocol returns 402 with payment required details
- Rate limit or platform-side blocking returns 429 or error payload
- Private account data may be inaccessible, returning empty or restricted response
- Malformed request body returns 400 bad request

## 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 for the requested account or query, including post content, captions, engagement metrics (likes, comments), timestamps, and media URLs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "handle": {
   "type": "string",
   "minLength": 1,
   "description": "Instagram username"
  },
  "order_by": {
   "enum": [
    "date_desc",
    "date_asc",
    "id_desc"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "max_posts": {
   "type": "integer",
   "default": 50,
   "maximum": 300,
   "minimum": -9007199254740991,
   "description": "Maximum number of posts to collect"
  },
  "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-posts-0d4ba148/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)
