# GEDX402 Social — Instagram Reels Feed

> GEDX402 Social — Instagram Reels Feed is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15, last successful call 2026-07-17).

Fetches Instagram Reels data for a given user handle or user ID via the SociaVault proxy, with optional trimming and pagination support.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/instagram/reels
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-17
- Success rate: 100% of calls made through Zero
- Activations on Zero: 9
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-instagram-reels-feed-24a2c779
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7uKakBD0LnIOT4wUnB1ZS

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-reels-feed-24a2c779
```

Example prompt: Pull the latest Instagram Reels for the account @natgeo using SociaVault — go ahead and trim the results, and if there are more pages use max_id to paginate through them.

## When to prefer this

Use this endpoint when you need to programmatically access Instagram Reels data for a specific user without maintaining your own Instagram API credentials, and you are comfortable with x402 micropayment-per-call billing via SociaVault's proxy layer.

## Known failure modes

- Invalid or nonexistent Instagram handle returns empty data or error
- Missing both handle and user_id results in a bad request
- Rate limiting or Instagram platform restrictions cause data unavailability
- Payment failure via x402 results in 402 response before data is returned
- Pagination with an invalid max_id cursor may return no results or an error

## How this service works

SociaVault API proxy — instagram-reels. 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 reels metadata for the requested Instagram user, a 'success' boolean, and a 'provider' field identifying SociaVault as the upstream source.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean"
  },
  "handle": {
   "type": "string"
  },
  "max_id": {
   "type": "string"
  },
  "user_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-reels-feed-24a2c779/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)
