# SocialFetch Instagram Story Highlight Albums

> SocialFetch Instagram Story Highlight Albums 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).

Lists all story highlight albums (collections) for a given Instagram profile by its handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/instagram/profiles/:handle/highlights
- 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-story-highlight-albums-e8ba45ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZxkW97U3I0uBaHIJE3zCJ

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-story-highlight-albums-e8ba45ca
```

Example prompt: Can you pull up all the story highlight albums for the Instagram profile 'natgeo'? I want to see what highlight categories they have.

## When to prefer this

Use this endpoint when you need to programmatically discover the story highlight albums of any public Instagram profile by handle. Ideal for social media auditing, competitor research, influencer analysis, or content mapping where you need to enumerate all highlight categories without manual browsing.

## Known failure modes

- Invalid or non-existent Instagram handle returns an error or empty result
- Private Instagram accounts may return no highlights or an access error
- Rate limiting or payment failure (x402) returns a 402 or 429 status
- Handle exceeds 64-character limit or is empty triggers a validation error
- Instagram profile exists but has no story highlights returns an empty list

## How this service works

List story highlight albums for an Instagram profile by handle.

## Output

A list of story highlight albums associated with the specified Instagram profile, typically including album identifiers, titles, cover image references, and related metadata for each highlight collection.

## 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 story highlight albums should be listed."
      }
     }
    },
    "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-story-highlight-albums-e8ba45ca/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)
