# GEDX402 Social — Instagram Posts Fetcher

> GEDX402 Social — Instagram Posts Fetcher is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status healthy (last checked 2026-09-16, last successful call 2026-08-28).

Fetches a paginated list of Instagram posts for a given user handle via the SociaVault proxy, paid per call via x402.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/instagram/posts
- Price: $0.014/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-16
- Last successful call: 2026-08-28
- Success rate: 100% of calls made through Zero
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-instagram-posts-fetcher-4fcb8c3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PflLCaNdhkjtQSkz-i6tb

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 gedx402-social-instagram-posts-fetcher-4fcb8c3e
```

Example prompt: Pull the latest Instagram posts for the handle 'natgeo' using SociaVault — trim the results and start from the beginning (no pagination cursor).

## When to prefer this

Use this endpoint when you need to programmatically fetch Instagram posts for a specific user handle without the official Instagram Graph API, paying per call via x402 USDC micropayments. Prefer this over scraping directly when you need a managed proxy that handles authentication complexity.

## Known failure modes

- Invalid or non-existent Instagram handle returns empty data or error
- Expired or invalid x402 payment results in 402 response
- Rate limiting or Instagram-side blocking may return empty or partial data
- Missing required 'handle' parameter causes malformed request
- Invalid next_max_id cursor may restart pagination or return error

## How this service works

SociaVault API proxy — instagram-posts. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

Returns a JSON object with a 'data' field containing Instagram post objects for the requested handle, a 'success' boolean, and a 'provider' field set to 'sociavault'. Pagination is supported via a next_max_id cursor in subsequent requests.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean"
  },
  "handle": {
   "type": "string"
  },
  "next_max_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

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