Instagram Media transcript API
Get the spoken-audio transcript text for an Instagram post or reel by URL.
Provider network
Providers ranked by traffic
Call it
Make your first request
import os, requests res = requests.post( "https://api.getanyapi.com/v1/run/instagram.media_transcript", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={ "url": "" }, ) print(res.json())
{
"data": {
"transcripts": [
{
"id": "a1b2c3d4",
"shortcode": "a1b2c3d4",
"text": "A short example description of this item."
}
]
},
"found": true
}interface InstagramMediaTranscriptResponse {
data: {
transcripts: {
id: string;
shortcode: string;
text: 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 30dcurl -X POST https://api.getanyapi.com/v1/run/instagram.media_transcript \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.instagram.com/reel/DHsD6HGqJhp/"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.instagram.com/reel/DHsD6HGqJhp/"Instagram post or reel URL. |
| Response | ||
| data | object | |
| data.transcripts | object[] | Populated whenever the provider has data for the entity. |
| data.transcripts[].id | string | Populated whenever the provider has data for the entity. |
| data.transcripts[].shortcode | string | Populated whenever the provider has data for the entity. |
| data.transcripts[].text | string | Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the Instagram Media transcript API
The AnyAPI Instagram Media transcript API returns Instagram media transcript data as normalized JSON from one POST call to /v1/run/instagram.media_transcript. Get the spoken-audio transcript text for an Instagram post or reel by URL. 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, 94.7% of Instagram media transcript calls through AnyAPI succeeded, with a median response time of 9.2 seconds across 113 measured calls.