Instagram API

Instagram Highlight detail API

Fetch the details and media items of a single Instagram story highlight by id.

POST/v1/run/instagram.highlight_detail
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

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": {
    "coverUrl": "https://example.com/page",
    "createdUtc": 12.5,
    "id": "a1b2c3d4",
    "mediaCount": 12500,
    "ownerHandle": "alex_rivera",
    "title": "Example title"
  },
  "found": true
}
Response interface
interface InstagramHighlightDetailResponse {
  data: {
    coverUrl: string;
    createdUtc: number;
    id: string;
    mediaCount: number;
    ownerHandle: string;
    title: 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.highlight_detail
curl -X POST https://api.getanyapi.com/v1/run/instagram.highlight_detail \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"18201653992314974"}'
FieldTypeExample value
Request body
idstring"18201653992314974"The id of the highlight to retrieve details for.
Response
dataobjectThe highlight record, or null when nothing was found.
data.coverUrlstringURL of the highlight cover image. Populated whenever the provider has data for the entity.
data.createdUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.idstringHighlight identifier. Populated whenever the provider has data for the entity.
data.mediaCountintegerNumber of media items in the highlight.
data.ownerHandlestringHandle of the account that owns the highlight. Populated whenever the provider has data for the entity.
data.titlestringHighlight title. Populated whenever the provider has data for the entity.
foundbooleanTrue when the highlight was found; false when the lookup returned nothing.
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Instagram Highlight detail API

The AnyAPI Instagram Highlight detail API returns Instagram highlight detail data as normalized JSON from one POST call to /v1/run/instagram.highlight_detail. Fetch the details and media items of a single Instagram story highlight by id. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 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 the details and media items of a single Instagram story highlight by id. 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.