# SocialFetch Instagram Profile Posts

> SocialFetch Instagram Profile Posts is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status healthy (last checked 2026-09-15, last successful call 2026-08-16).

Lists posts from a given Instagram profile by its handle, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/instagram/profiles/:handle/posts
- Price: $0.014/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-08-16
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 53
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-instagram-profile-posts-40a1ca42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sc98Zrb7-Zk7FGbn910dG

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 socialfetch-instagram-profile-posts-40a1ca42
```

Example prompt: Pull the most recent posts from the Instagram profile @natgeo and show me what they've been posting lately.

## When to prefer this

Use this endpoint when you need to enumerate the posts of a specific Instagram user by their handle, especially when building feeds, monitoring accounts for new content, or scraping public post histories. Prefer this over the single-post endpoint when you need multiple posts, and over the search endpoint when you already know the exact handle.

## Known failure modes

- Handle not found or account is private — likely returns 404 or empty result
- Invalid or expired pagination cursor — may return an error or restart pagination
- Rate limiting or upstream Instagram access issues — may return 429 or 503
- Handle parameter missing or too long (>64 chars) — schema validation error

## How this service works

List posts from an Instagram profile by handle.

## Output

A paginated list of posts from the specified Instagram profile, including post metadata such as captions, media, timestamps, and a nextCursor token for fetching additional pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 2048,
       "minLength": 1,
       "description": "Instagram handle whose posts should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor from a previous response."
      },
      "hostMedia": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, hosts source media for 90 days and returns delivery URLs in each post's `hostedMedia`."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-instagram-profile-posts-40a1ca42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
