# StableSocial Instagram Comment Replies

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

Fetches reply comments on a specific Instagram comment, returning nested reply data for that comment thread.

## Facts

- Endpoint: POST https://socialx402.com/api/instagram/comment-replies
- 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-comment-replies-78cd9ebb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__1yGeKTRfLtzalCGXjhfr

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-comment-replies-78cd9ebb -d '<json body>'
```

Example prompt: Can you pull all the replies to this Instagram comment — comment ID 17858893269000001 — so I can see who responded and what they said?

## When to prefer this

Choose this endpoint when you need to retrieve nested reply threads for a specific Instagram comment without managing OAuth tokens or API credentials. Ideal for pay-per-use workflows where you only need occasional comment reply data and want to avoid subscription costs.

## Known failure modes

- Invalid or non-existent comment ID returns empty result or 404-equivalent
- Private account content may be inaccessible and return an error
- Rate limiting or payment failure returns 402 or 429 status
- Deleted comment or removed content returns empty or error 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 reply objects for the specified Instagram comment, each containing reply text, author username, timestamp, and like count, structured as JSON.

## Example request

```json
{
 "post_id": "123456789",
 "comment_id": "987654321",
 "max_page_size": 25
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "post_id": {
   "type": "string",
   "minLength": 1,
   "description": "Instagram post ID (needed to trigger reply loading)"
  },
  "comment_id": {
   "type": "string",
   "minLength": 1,
   "description": "Instagram comment ID"
  },
  "max_replies": {
   "type": "integer",
   "default": 50,
   "maximum": 300,
   "minimum": 1,
   "description": "Maximum replies to collect for the comment"
  },
  "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-comment-replies-78cd9ebb/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)
