# StableSocial Instagram Post Comments

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

Fetches comments from a specified Instagram post via pay-per-request API with no subscription required

## Facts

- Endpoint: POST https://socialx402.com/api/instagram/post-comments
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-instagram-post-comments-7b10e122
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nj8uXtdjmYVyi3b4314RF

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-post-comments-7b10e122 -d '<json body>'
```

Example prompt: Pull all the comments from this Instagram post — https://www.instagram.com/p/ABC123XYZ/ — I want to see who's commenting and what they're saying.

## When to prefer this

Use this endpoint when you need to extract public comment data from a specific Instagram post without managing OAuth credentials, subscriptions, or Instagram API quotas. Ideal for one-off analysis, sentiment monitoring, or competitive research where pay-per-request pricing is more cost-effective than a monthly plan.

## Known failure modes

- Post URL or ID not found or invalid — returns 404 or error response
- Private or restricted Instagram account — returns access denied or empty result
- Instagram rate limiting or block on the scraping backend — returns 429 or service error
- Deleted or expired post — returns not found error
- Malformed request body — returns 400 bad request
- Payment failure or insufficient USDC balance — returns 402 payment required

## 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 comments on the specified Instagram post, including commenter usernames, comment text, timestamps, and potentially reply counts or nested replies.

## Example request

```json
{
 "post_id": "17999999999999999",
 "comment_id": "18000000000000001",
 "max_page_size": 50
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "post_id": {
   "type": "string",
   "minLength": 1,
   "description": "Instagram post ID or shortcode"
  },
  "order_by": {
   "enum": [
    "date_desc",
    "date_asc",
    "id_desc"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "max_comments": {
   "type": "integer",
   "default": 50,
   "maximum": 300,
   "minimum": -9007199254740991,
   "description": "Maximum number of comments"
  },
  "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-post-comments-7b10e122/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)
