Pricing
from $2.50 / 1,000 transcribed-reels
Go to Apify Store
Instagram
Deprecated
Pricing
from $2.50 / 1,000 transcribed-reels
You can access the Instagram programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in API & Integrations in Apify Console.
{ "openapi": "3.0.1", "info": { "version": "0.8", "x-build-id": "1cfYIx01GnPCKS4LB" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/trakk~instagram-transcript-scraper-reels-monitor/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-trakk-instagram-transcript-scraper-reels-monitor", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } }, "/acts/trakk~instagram-transcript-scraper-reels-monitor/runs": { "post": { "operationId": "runs-sync-trakk-instagram-transcript-scraper-reels-monitor", "x-openai-isConsequential": false, "summary": "Executes an Actor and returns information about the initiated run in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/runsResponseSchema" } } } } } } }, "/acts/trakk~instagram-transcript-scraper-reels-monitor/run-sync": { "post": { "operationId": "run-sync-trakk-instagram-transcript-scraper-reels-monitor", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } } }, "components": { "schemas": { "inputSchema": { "type": "object", "required": [ "mode" ], "properties": { "mode": { "title": "Workflow", "enum": [ "urls", "profiles" ], "type": "string", "description": "Choose direct Reel URLs, multi-profile research, or stateful monitoring.", "default": "profiles" }, "urls": { "title": "Instagram Reel or video URLs", "type": "array", "description": "Used only in Reel URLs mode. Supports public /reel/, /p/, and /tv/ links or bare shortcodes.", "items": { "type": "object", "required": [ "url" ], "properties": { "url": { "type": "string", "title": "URL of a web page", "format": "uri" } } } }, "profiles": { "title": "Public Instagram profiles", "type": "array", "description": "Used in Profile research and Monitor modes. Accepts usernames, @usernames, or full profile URLs.", "default": [ "nasa" ], "items": { "type": "string" } }, "maxReelsPerProfile": { "title": "Recent Reels per profile", "minimum": 1, "maximum": 12, "type": "integer", "description": "Inspect between 1 and 12 recent public Reels per profile. Keep 1 for the fastest large-list runs.", "default": 1 }, "firstTranscriptPerProfile": { "title": "One transcript per profile", "type": "boolean", "description": "When enabled in Profile research mode, inspect recent Reels newest-first and stop after the first Reel with real speech. This produces at most one paid result per submitted profile instead of losing profiles whose newest Reel is silent.", "default": false }, "spokenKeywords": { "title": "Spoken brands or keywords", "type": "array", "description": "Optional case-insensitive words or brand names. Matches include timestamps and surrounding speech.", "items": { "type": "string" } }, "hookSeconds": { "title": "Opening hook length", "minimum": 1, "maximum": 15, "type": "number", "description": "Return the spoken opening from this many seconds of the Reel.", "default": 5 }, "language": { "title": "Spoken language", "enum": [ "auto", "en", "es", "fr", "de", "it", "pt", "ru", "uk", "pl", "tr", "ar", "hi", "ja", "ko", "zh" ], "type": "string", "description": "Automatic detection is recommended. Force a language only when you know it in advance.", "default": "auto" }, "preferNativeCaptions": { "title": "Use Instagram captions first", "type": "boolean", "description": "Use a genuine timed subtitle track when Instagram exposes one; otherwise automatically fall back to speech-to-text.", "default": true }, "speechRecognitionEngine": { "title": "Speech recognition speed", "enum": [ "auto", "local", "deepgram", "groq" ], "type": "string", "description": "Auto uses Deepgram Nova-3 first, then Groq Turbo when the matching key is supplied, with automatic local fallback. Local works without an external account.", "default": "auto" }, "deepgramApiKey": { "title": "Deepgram API key (optional)", "type": "string", "description": "Encrypted by Apify. Recommended for bulk runs: Nova-3 accepts Instagram CDN URLs directly and supports up to 50 concurrent pre-recorded requests on eligible plans." }, "groqApiKey": { "title": "Groq API key (optional)", "type": "string", "description": "Encrypted by Apify. Enables low-latency multilingual Whisper Large V3 Turbo; signed Instagram audio URLs go directly to Groq and fall back to local recognition if unavailable. Use Developer limits for more than 20 requests/minute." }, "maxDurationSeconds": { "title": "Maximum Reel duration", "minimum": 30, "maximum": 180, "type": "integer", "description": "Skip longer videos before speech recognition. This keeps run cost predictable; skipped videos are saved separately and are not billed as transcript results.", "default": 180 }, "proxyConfiguration": { "title": "Connection settings", "type": "object", "description": "Default connection settings are preconfigured for reliable public Instagram requests.", "default": { "useApifyProxy": true, "apifyProxyGroups": [ "RESIDENTIAL" ], "apifyProxyCountry": "US" } }, "maxConcurrency": { "title": "Parallel media jobs", "minimum": 1, "maximum": 8, "type": "integer", "description": "Media downloads and recognition jobs processed in parallel. Local mode automatically caps this to available CPUs.", "default": 8 }, "transcriptionConcurrency": { "title": "Parallel transcriptions", "minimum": 1, "maximum": 8, "type": "integer", "description": "Cloud recognition can process several Reels at once; local mode automatically caps workers to available CPUs.", "default": 8 }, "maxRetries": { "title": "Request retries", "minimum": 1, "maximum": 5, "type": "integer", "description": "Retry temporarily blocked, rate-limited, or interrupted Instagram requests.", "default": 3 }, "requestTimeoutSecs": { "title": "Request timeout", "minimum": 10, "maximum": 120, "type": "integer", "description": "Maximum time allowed for one Instagram or media request.", "default": 35 } } }, "runsResponseSchema": { "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "string" }, "actId": { "type": "string" }, "userId": { "type": "string" }, "startedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "finishedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "status": { "type": "string", "example": "READY" }, "meta": { "type": "object", "properties": { "origin": { "type": "string", "example": "API" }, "userAgent": { "type": "string" } } }, "stats": { "type": "object", "properties": { "inputBodyLen": { "type": "integer", "example": 2000 }, "rebootCount": { "type": "integer", "example": 0 }, "restartCount": { "type": "integer", "example": 0 }, "resurrectCount": { "type": "integer", "example": 0 }, "computeUnits": { "type": "integer", "example": 0 } } }, "options": { "type": "object", "properties": { "build": { "type": "string", "example": "latest" }, "timeoutSecs": { "type": "integer", "example": 300 }, "memoryMbytes": { "type": "integer", "example": 1024 }, "diskMbytes": { "type": "integer", "example": 2048 } } }, "buildId": { "type": "string" }, "defaultKeyValueStoreId": { "type": "string" }, "defaultDatasetId": { "type": "string" }, "defaultRequestQueueId": { "type": "string" }, "buildNumber": { "type": "string", "example": "1.0.0" }, "containerUrl": { "type": "string" }, "usage": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "integer", "example": 1 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } }, "usageTotalUsd": { "type": "number", "example": 0.00005 }, "usageUsd": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "number", "example": 0.00005 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for Instagram from the options below:
If youโd like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: