# SocialFetch Instagram Highlight Stories

> SocialFetch Instagram Highlight Stories is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Fetches all stories contained within a saved Instagram highlight by its numeric highlight ID.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/instagram/highlights/:highlightId
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-instagram-highlight-stories-638e7506
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XcrpklIZiyW-d9KsfXpLt

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-highlight-stories-638e7506
```

Example prompt: Can you pull all the stories from this Instagram highlight — the highlight ID is 17896846793832053?

## When to prefer this

Use this endpoint when you need to programmatically access the stories stored inside a specific Instagram highlight and you have the numeric highlight ID. Ideal for content auditing, competitive research, or archiving Instagram highlight content without needing Instagram's official API credentials.

## Known failure modes

- Invalid or non-numeric highlight ID returns a validation error
- Highlight is private or belongs to a private account, resulting in an access-denied or empty response
- Highlight has been deleted or no longer exists, returning a not-found error
- Instagram rate limiting or anti-scraping measures may cause temporary failures
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Get stories inside a saved Instagram highlight by highlight id.

## Output

Returns a list of stories inside the specified Instagram highlight, including story media URLs, metadata (timestamps, types, dimensions), and other story-level details for each item in the highlight.

## 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": [
      "highlightId"
     ],
     "properties": {
      "highlightId": {
       "type": "string",
       "pattern": "^\\d+$",
       "description": "Numeric Instagram highlight id from a highlight URL."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-highlight-stories-638e7506/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)
