Instagram API

Instagram Stories thin API

Fetch a public Instagram account's currently live stories - media URL, owner, and posting time - by username. Lightweight projection; for media type, dimensions, and the 24h expiry time use instagram.stories_full.

POST/v1/run/instagram.stories_thin
Uptime
100.00%
30d · 1 call
Requests
1
30d · weekly, last 12 wks
Response
2.7s
median · 30d

Provider network

Providers ranked by traffic

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "createdUtc": 12.5,
        "id": "a1b2c3d4",
        "mediaUrl": "https://example.com/page",
        "permalink": "https://example.com/page",
        "username": "alex_rivera"
      }
    ]
  },
  "found": true
}
Response interface
interface InstagramStoriesThinResponse {
  data: {
    items: {
      createdUtc?: number;
      id: string;
      mediaUrl?: string;
      permalink?: string;
      username?: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-17 · uptime and latency measured over 30d
POST /v1/run/instagram.stories_thin
curl -X POST https://api.getanyapi.com/v1/run/instagram.stories_thin \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"natgeo"}'
FieldTypeExample value
Request body
usernamestring"natgeo"Instagram username/handle to fetch currently live stories for (without the @).
Response
dataobjectWrapper holding the story items array, or null when nothing was found.
data.itemsobject[]The account's currently live stories, each with its media URL, owner, posting time, and permalink. Populated whenever the provider has data for the entity.
data.items[].createdUtcnumberPosting time (Unix seconds).
data.items[].idstringStory identifier. Populated whenever the provider has data for the entity.
data.items[].mediaUrlstringDirect URL to the story image or video. Populated whenever the provider has data for the entity.
data.items[].permalinkstringPublic link to the story. Populated whenever the provider has data for the entity.
data.items[].usernamestringOwner username. Populated whenever the provider has data for the entity.
foundbooleanTrue when stories were found; false when the lookup returned nothing.
Price
Price per requestUSD$0.0015
Price /1k reqUSD$1.50

FAQ

About the Instagram Stories thin API

The AnyAPI Instagram Stories thin API returns Instagram stories thin data as normalized JSON from one POST call to /v1/run/instagram.stories_thin. Fetch a public Instagram account's currently live stories - media URL, owner, and posting time - by username. Lightweight projection; for media type, dimensions, and the 24h expiry time use instagram.stories_full. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Instagram stories thin calls through AnyAPI succeeded, with a median response time of 2.7 seconds across 1 measured calls.

It costs from $1.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch a public Instagram account's currently live stories - media URL, owner, and posting time - by username. Lightweight projection; for media type, dimensions, and the 24h expiry time use instagram.stories_full. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Instagram stories thin calls through AnyAPI succeeded, with a median response time of 2.7 seconds across 1 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.