# Instagram User Posts Fetcher

> Instagram User Posts Fetcher is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Fetches paginated posts from a specified Instagram user's profile by handle

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/instagram/user-posts
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/instagram-user-posts-fetcher-def18a2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z4ruv7fIvDUbzZHC1YLK_

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 instagram-user-posts-fetcher-def18a2b -d '<json body>'
```

Example prompt: Pull the latest posts from Instagram user @natgeo — and if there are multiple pages, go through all of them.

## When to prefer this

Use this endpoint when you need to retrieve posts from a specific Instagram user's public profile by handle, especially when paginating through large post histories. The continuation billing model makes it cost-effective for multi-page retrieval. Prefer this over generic web scrapers when you need structured Instagram post data rather than raw HTML.

## Known failure modes

- Invalid or non-existent Instagram handle returns an error or empty result
- Private Instagram accounts may return no posts or an access error
- Rate limiting or Instagram anti-scraping measures may cause failures
- Missing or stale pagination token causes pagination to restart
- Changing filter parameters while passing parentRequestId starts a new billable request

## How this service works

Fetches paginated posts from an Instagram user. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of posts from the specified Instagram user, including post content, metadata, and a nextPageToken for fetching subsequent pages. Subsequent pages of the same request can be fetched at no additional charge by passing the parentRequestId.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "handle": {
   "type": "string",
   "description": "Instagram handle."
  },
  "nextPageToken": {
   "type": "string",
   "description": "Pagination token. For continuation billing, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/instagram-user-posts-fetcher-def18a2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
