Instagram API

Instagram Audio reels API

List Instagram reels that use a given audio track by audio id.

POST/v1/run/instagram.audio_reels
Uptime
100.00%
30d · 1 call
Requests
1
30d · weekly, last 12 wks
Response
3.0s
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": {
    "hasMore": true,
    "nextCursor": "example",
    "reels": [
      {
        "code": "a1b2c3d4",
        "comments": 12500,
        "handle": "alex_rivera",
        "id": "a1b2c3d4",
        "likes": 12500,
        "plays": 42
      }
    ]
  },
  "found": true
}
Response interface
interface InstagramAudioReelsResponse {
  data: {
    hasMore: boolean;
    nextCursor: string | null;
    reels: {
      code: string;
      comments: number;
      handle: string;
      id: string;
      likes: number;
      plays: number;
    }[];
  } | 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.audio_reels
curl -X POST https://api.getanyapi.com/v1/run/instagram.audio_reels \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"audioId":"1392969992841787"}'
FieldTypeExample value
Request body
audioIdstring"1392969992841787"Audio identifier from the Instagram audio page URL.
cursorstringPagination cursor returned by a previous response.
Response
dataobject
data.hasMoreboolean
data.nextCursorstringOpaque cursor for the next page of reels, or null when this lane has no more. Pass it back as cursor to continue.
data.reelsobject[]Populated whenever the provider has data for the entity.
data.reels[].codestring
data.reels[].commentsinteger
data.reels[].handlestringPopulated whenever the provider has data for the entity.
data.reels[].idstringPopulated whenever the provider has data for the entity.
data.reels[].likesinteger
data.reels[].playsinteger
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Instagram Audio reels API

The AnyAPI Instagram Audio reels API returns Instagram audio reels data as normalized JSON from one POST call to /v1/run/instagram.audio_reels. List Instagram reels that use a given audio track by audio id. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Instagram audio reels calls through AnyAPI succeeded, with a median response time of 3.0 seconds across 1 measured calls.

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.

List Instagram reels that use a given audio track by audio 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.

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