{
  "openapi": "3.0.0",
  "info": {
    "title": "Instagram API",
    "description": "Read public Instagram data — profiles, posts, reels, comments, transcripts, and search.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://api.aisa.one/apis/v1"
    }
  ],
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "AIsa API key. Get yours at https://aisa.one"
      }
    },
    "schemas": {
      "AIsaSocialError": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "error": {
            "type": "string"
          },
          "errorStatus": {
            "type": "integer"
          },
          "message": {
            "type": "string"
          }
        },
        "additionalProperties": true
      },
      "InstagramObject": {
        "type": "object",
        "additionalProperties": true
      },
      "InstagramProfileResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "data": {
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": true
      },
      "InstagramBasicProfileResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "id": {
            "type": "string"
          },
          "pk": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "full_name": {
            "type": "string"
          },
          "biography": {
            "type": "string"
          },
          "follower_count": {
            "type": "integer"
          },
          "following_count": {
            "type": "integer"
          },
          "media_count": {
            "type": "integer"
          },
          "is_private": {
            "type": "boolean"
          },
          "is_verified": {
            "type": "boolean"
          }
        },
        "additionalProperties": true
      },
      "InstagramItemsResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          },
          "next_max_id": {
            "type": "string",
            "nullable": true
          },
          "max_id": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "InstagramHighlightsResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "highlights": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": true
      },
      "InstagramHighlightDetailResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "id": {
            "type": "string"
          },
          "reel_type": {
            "type": "string"
          },
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": true
      },
      "InstagramEmbedResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "html": {
            "type": "string"
          }
        },
        "additionalProperties": true
      },
      "InstagramPostResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "xdt_shortcode_media": {
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": true
      },
      "InstagramCommentsResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "comments": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          },
          "cursor": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "InstagramTranscriptsResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "transcripts": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": true
      },
      "InstagramReelsResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "reels": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          },
          "cursor": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "InstagramHashtagSearchResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "hashtag": {
            "type": "string"
          },
          "media_type": {
            "type": "string"
          },
          "posts": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          },
          "cursor": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "InstagramProfilesSearchResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "credits_remaining": {
            "type": "integer"
          },
          "query": {
            "type": "string"
          },
          "profiles": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": true
            }
          },
          "cursor": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      }
    }
  },
  "paths": {
    "/instagram/profile": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_profile",
        "summary": "Profile",
        "description": "Returns the full public profile for an Instagram handle, forwarded from Instagram's own web API. Counts sit under data.user.edge_followed_by.count and data.user.edge_follow.count, alongside biography, bio_links, external_url, full_name, is_verified, is_private, highlight_reel_count, the numeric id, and the twelve most recent posts under data.user.edge_owner_to_timeline_media.edges. Measured at about 380 KB; trim=true saves under one percent, so do not rely on it to shrink the payload. When the numeric id is already known, get_instagram_basic_profile returns the same headline numbers in about 4 KB.",
        "parameters": [
          {
            "name": "handle",
            "in": "query",
            "required": true,
            "description": "Instagram handle",
            "schema": {
              "type": "string"
            },
            "example": "jane"
          },
          {
            "name": "trim",
            "in": "query",
            "required": false,
            "description": "Set to true to get a trimmed response",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "data": {
                    "user": {
                      "biography": "Building example.com | The easiest way to get public social media data at scale",
                      "bio_links": [
                        {
                          "title": "AIsa",
                          "lynx_url": "https://l.instagram.com/?u=https%3A%2F%2Fx.com%2Fadrian_horning_&e=AT0KAd0qSCzNTxgxhgbcBgpBfjdbmbmY2tBez0k8r-ykg_husVDislRpwV7hphrBf5oKxgE2JMWF43ZAkx4abc9zz8HfISec",
                          "url": "https://x.com/adrian_horning_",
                          "link_type": "external"
                        }
                      ],
                      "biography_with_entities": {
                        "raw_text": "Building example.com | The easiest way to get public social media data at scale",
                        "entities": []
                      },
                      "external_url": "https://x.com/adrian_horning_",
                      "edge_followed_by": {
                        "count": 24555
                      },
                      "fbid": "17841402777077586",
                      "edge_follow": {
                        "count": 110
                      },
                      "full_name": "Adrian Horning",
                      "id": "2700692569",
                      "is_business_account": true,
                      "is_professional_account": true,
                      "business_address_json": {
                        "city_name": "Austin, Texas",
                        "city_id": 106224666074625,
                        "latitude": 30.26759,
                        "longitude": -97.74299,
                        "street_address": null,
                        "zip_code": null
                      },
                      "category_name": "Entrepreneur",
                      "is_private": false,
                      "is_verified": false,
                      "profile_pic_url": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-19/430086429_362220943449758_2621012714660517106_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=RhIwCIipKVUQ7kNvwFpvyAL&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfPuXR8boR4S5dkEzAKuAxTDy2CiDHtblOt2xdmEYwUqdw&oe=685A08E9&_nc_sid=8b3546",
                      "profile_pic_url_hd": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-19/430086429_362220943449758_2621012714660517106_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=RhIwCIipKVUQ7kNvwFpvyAL&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfONiKUtNB0AmfUKY78zqJc2wM8GVdfgKdx2t0-0HqIx_A&oe=685A08E9&_nc_sid=8b3546",
                      "username": "adrianhorning",
                      "edge_felix_video_timeline": {
                        "count": 0,
                        "page_info": {
                          "has_next_page": false,
                          "end_cursor": null
                        },
                        "edges": []
                      },
                      "edge_owner_to_timeline_media": {
                        "count": 90,
                        "page_info": {
                          "has_next_page": true,
                          "end_cursor": "QVFCY2E4Q1ZqQVBHdnBsUGMtVWlZZ2I3Qm9uOFdSSlZLS0NvdWVuQ05TQzR5T1hkSDM4cXVjTThsM1lQcXhsaWVyM2hQX0VoUzVYaHN3MmdRdmJGU0hENw=="
                        },
                        "edges": [
                          {
                            "node": {
                              "__typename": "GraphVideo",
                              "id": "3622533050035914969",
                              "shortcode": "DJF0p2ygMjZ",
                              "dimensions": {
                                "height": 1136,
                                "width": 640
                              },
                              "display_url": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=dst-jpg_e15_tt6&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfN3JWSxHXGRcVbzi4bEP0e42CF-gmZRTwPGLuprdlJGuQ&oe=685A1889&_nc_sid=8b3546",
                              "edge_media_to_tagged_user": {
                                "edges": []
                              },
                              "fact_check_overall_rating": null,
                              "fact_check_information": null,
                              "gating_info": null,
                              "sharing_friction_info": {
                                "should_have_sharing_friction": false,
                                "bloks_app_url": null
                              },
                              "media_overlay_info": null,
                              "media_preview": "ABgqg3Uu4VPbGMZz94np6emPlbr3q+EBGQB+Y/H/AJZ1I7GK8bSHlsL6Dr+JorQuDGw+U/MDjp29+B/kmigCOaBUAJGM+/rUcOxuMnK56nj8PX8K0LrEsZUDOR+XfP4VjwI8hCngZ5/wHpmk0VFlqWMrGzr1AyKK0pY8oyj0IopkkoI/SoBGkblh1HI/z61Gh+X8KWTqfwqhCtJgg/gfzoqo3Q/570UAf//Z",
                              "owner": {
                                "id": "2700692569",
                                "username": "adrianhorning"
                              },
                              "is_video": true,
                              "has_upcoming_event": false,
                              "accessibility_caption": null,
                              "dash_info": {
                                "is_dash_eligible": true,
                                "video_dash_manifest": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<MPD xmlns=\"urn:mpeg:dash:schema:mpd:2011\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"urn:mpeg:dash:schema:mpd:2011 DASH-MPD.xsd\" profiles=\"urn:mpeg:dash:profile:isoff-on-demand:2011\" minBufferTime=\"PT2S\" type=\"static\" mediaPresentationDuration=\"PT38.079273S\" FBManifestIdentifier=\"FgAYEnIyZXZldnA5LXIxZ2VuMnZwORlWuoXrvOS49QGol5CSkNy6ApKsiu6TkaMErp2h1d3e2g6y2szawPXGISIYGGRhc2hfbG5faGVhYWNfdmJyM19hdWRpbyIA\"><Period id=\"0\" duration=\"PT38.079273S\"><AdaptationSet id=\"0\" contentType=\"video\" subsegmentAlignment=\"true\" par=\"9:16\" FBUnifiedUploadResolutionMos=\"360:72.4\"><Representation id=\"9444624588969625vd\" bandwidth=\"93337\" codecs=\"vp09.00.31.08.00.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_r2evevp9-r1gen2vp9_q60\" FBContentLength=\"444144\" FBPlaybackResolutionMos=\"0:100,360:61.6,480:57.4,720:54.8\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:85.4,480:81.8,720:76.1\" FBAbrPolicyTags=\"\" width=\"720\" height=\"1280\" frameRate=\"14947/500\" FBDefaultQuality=\"1\" FBQualityClass=\"hd\" FBQualityLabel=\"480p\"><BaseURL>https://scontent-lga3-2.cdninstagram.com/o1/v/t2/f2/m367/AQMCx4WpbdanxcifQp6aX3v2DGfI_Eq6RsU_Z2c5TrAR2tTM-UKGtsQpsziJEKSndBazbOHwwFDtPp6ojDLuN-uC3CEena8AuyQTh2I.mp4?_nc_cat=100&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;_nc_ohc=tdWu2qgzCFkQ7kNvwGISPjP&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLmNsaXBzLmMyLUMzLmRhc2hfcjJldmV2cDktcjFnZW4ydnA5X3E2MCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjo3MDQzMTg2MzIwNTA1NTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjozOCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfNHBvnXH6I9I4qga7OQo8I8bbX8Xt-beirwEr5cwi225w&amp;oe=685A17C9</BaseURL><SegmentBase indexRange=\"818-945\" timescale=\"14947\" FBMinimumPrefetchRange=\"946-15429\" FBPartialPrefetchDuration=\"2500\" FBPartialPrefetchRange=\"946-30552\" FBFirstSegmentRange=\"946-40446\" FBFirstSegmentDuration=\"5017\" FBSecondSegmentRange=\"40447-109849\" FBPrefetchSegmentRange=\"946-40446\" FBPrefetchSegmentDuration=\"5017\"><Initialization range=\"0-817\"/></SegmentBase></Representation><Representation id=\"539736255848797v\" bandwidth=\"225403\" codecs=\"vp09.00.31.08.00.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_r2evevp9-r1gen2vp9_q70\" FBContentLength=\"1072577\" FBPlaybackResolutionMos=\"0:100,360:78.1,480:74.5,720:71.1\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:94,480:92.1,720:88.7\" FBAbrPolicyTags=\"\" width=\"720\" height=\"1280\" frameRate=\"14947/500\" FBQualityClass=\"hd\" FBQualityLabel=\"540p\"><BaseURL>https://scontent-lga3-3.cdninstagram.com/o1/v/t2/f2/m367/AQPzbfKcje1byrDvq8YR4AvduiVvNKxRwuW5eXcXb6B60mKOOZSq2S2G1G763vWRFSgYc4j3WfK69rUDY2H3Qsw9_yB33-gvjwaaQrU.mp4?_nc_cat=104&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;_nc_ohc=OKOnrKt5yNcQ7kNvwEHQTMa&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLmNsaXBzLmMyLUMzLmRhc2hfcjJldmV2cDktcjFnZW4ydnA5X3E3MCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjo3MDQzMTg2MzIwNTA1NTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjozOCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfO6gvz9F5m4B40F4xCWw8epgaulUF3aIpKOHw3YQyDKdA&amp;oe=685A16C9</BaseURL><SegmentBase indexRange=\"818-945\" timescale=\"14947\" FBMinimumPrefetchRange=\"946-26967\" FBPartialPrefetchDuration=\"2500\" FBPartialPrefetchRange=\"946-72074\" FBFirstSegmentRange=\"946-105094\" FBFirstSegmentDuration=\"5017\" FBSecondSegmentRange=\"105095-262657\" FBPrefetchSegmentRange=\"946-105094\" FBPrefetchSegmentDuration=\"5017\"><Initialization range=\"0-817\"/></SegmentBase></Representation><Representation id=\"692076016698836v\" bandwidth=\"388647\" codecs=\"vp09.00.31.08.00.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_r2evevp9-r1gen2vp9_q80\" FBContentLength=\"1849373\" FBPlaybackResolutionMos=\"0:100,360:84.9,480:80.9,720:77\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:96.3,480:95.1,720:92.6\" FBAbrPolicyTags=\"\" width=\"720\" height=\"1280\" frameRate=\"14947/500\" FBQualityClass=\"hd\" FBQualityLabel=\"640p\"><BaseURL>https://scontent-lga3-3.cdninstagram.com/o1/v/t2/f2/m367/AQNKeV8ZzKEUh6GtiHZ4h2GHrWMG8klq-rNb-om-3WsZqFVCqBUChpttUn0VdtI-kb1HTSt-mqd-IUpda-e-1Ct5WQVjgGBUFKqZW6k.mp4?_nc_cat=108&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;_nc_ohc=cAAJI8QKF3cQ7kNvwGPPIEp&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLmNsaXBzLmMyLUMzLmRhc2hfcjJldmV2cDktcjFnZW4ydnA5X3E4MCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjo3MDQzMTg2MzIwNTA1NTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjozOCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfM3ZUHT7P7kDHSnQWdmkMNAZev3DqVh-ogoric6mwTCfw&amp;oe=685A2039</BaseURL><SegmentBase indexRange=\"818-945\" timescale=\"14947\" FBMinimumPrefetchRange=\"946-35848\" FBPartialPrefetchDuration=\"2500\" FBPartialPrefetchRange=\"946-120416\" FBFirstSegmentRange=\"946-186220\" FBFirstSegmentDuration=\"5017\" FBSecondSegmentRange=\"186221-450247\" FBPrefetchSegmentRange=\"946-186220\" FBPrefetchSegmentDuration=\"5017\"><Initialization range=\"0-817\"/></SegmentBase></Representation><Representation id=\"1203160444128009v\" bandwidth=\"586350\" codecs=\"vp09.00.31.08.00.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_r2evevp9-r1gen2vp9_q90\" FBContentLength=\"2790139\" FBPlaybackResolutionMos=\"0:100,360:87.9,480:84.7,720:81.1\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:97.1,480:96.4,720:94.7\" FBAbrPolicyTags=\"avoid_on_cellular,avoid_on_cellular_intentional\" width=\"720\" height=\"1280\" frameRate=\"14947/500\" FBQualityClass=\"hd\" FBQualityLabel=\"720p\"><BaseURL>https://scontent-lga3-3.cdninstagram.com/o1/v/t2/f2/m367/AQNKBhbA4fJfoUsBrS5L9rvBcEEYPsiDNkpGhHUTAsvNz9FVH3sFq-5BGCTrhXqE-9OOrf6ZXcYgc1ZyeyjkIhKhwPqXulbXwQhETiE.mp4?_nc_cat=106&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;_nc_ohc=hR5K7-pJIjYQ7kNvwG0KIvy&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLmNsaXBzLmMyLUMzLmRhc2hfcjJldmV2cDktcjFnZW4ydnA5X3E5MCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjo3MDQzMTg2MzIwNTA1NTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjozOCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfN0FumICc3gocLrtUbwpD0S_CL9_j6VWpruUTggbVZPxg&amp;oe=685A2BA3</BaseURL><SegmentBase indexRange=\"818-945\" timescale=\"14947\" FBMinimumPrefetchRange=\"946-42984\" FBPartialPrefetchDuration=\"2500\" FBPartialPrefetchRange=\"946-182401\" FBFirstSegmentRange=\"946-291238\" FBFirstSegmentDuration=\"5017\" FBSecondSegmentRange=\"291239-676222\" FBPrefetchSegmentRange=\"946-291238\" FBPrefetchSegmentDuration=\"5017\"><Initialization range=\"0-817\"/></SegmentBase></Representation></AdaptationSet><AdaptationSet id=\"1\" contentType=\"audio\" subsegmentStartsWithSAP=\"1\" subsegmentAlignment=\"true\"><Representation id=\"4140189246302039ad\" bandwidth=\"43137\" codecs=\"mp4a.40.5\" mimeType=\"audio/mp4\" FBAvgBitrate=\"43137\" audioSamplingRate=\"44100\" FBEncodingTag=\"dash_ln_heaac_vbr3_audio\" FBContentLength=\"206423\" FBPaqMos=\"87.06\" FBAbrPolicyTags=\"\" FBDefaultQuality=\"1\"><AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"2\"/><BaseURL>https://scontent-lga3-2.cdninstagram.com/o1/v/t16/f2/m69/AQPlt9RDt-DmGSWZPircoX-bty88IKciKTjgMgf8ncmxMLLWPx6KfyLS34HDZXRixrrFEW5_P-TAoR7vL97OV22_.mp4?strext=1&amp;_nc_cat=107&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;_nc_ohc=opLE557_YjcQ7kNvwGzrtJj&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLmNsaXBzLmMyLUMzLmRhc2hfbG5faGVhYWNfdmJyM19hdWRpbyIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjo3MDQzMTg2MzIwNTA1NTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjozOCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfP99wtyKoO-gqUnlUW2zh_xfD_6sc1CVQsK6EKHlSTD1g&amp;oe=685A0A05</BaseURL><SegmentBase indexRange=\"824-1095\" timescale=\"44100\" FBMinimumPrefetchRange=\"1096-1428\" FBPartialPrefetchDuration=\"2500\" FBPartialPrefetchRange=\"1096-14369\" FBFirstSegmentRange=\"1096-12066\" FBFirstSegmentDuration=\"2021\" FBSecondSegmentRange=\"12067-24132\" FBPrefetchSegmentRange=\"1096-24132\" FBPrefetchSegmentDuration=\"4017\"><Initialization range=\"0-823\"/></SegmentBase></Representation></AdaptationSet></Period></MPD>\n",
                                "number_of_qualities": 4
                              },
                              "has_audio": true,
                              "tracking_token": "eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiNDQzYjgyZjVhNmExNDY5Mjk3NzUwYTFiNDgxNDFhYjAzNjIyNTMzMDUwMDM1OTE0OTY5In0sInNpZ25hdHVyZSI6IiJ9",
                              "video_url": "https://scontent-lga3-3.cdninstagram.com/o1/v/t16/f2/m86/AQOtWzDoaQkqcah0vnQQ9OiZsZO_7DqXWlZS98KgVeme4ytLMOPYmhG9xprV3izReal1QXGlLQJHeYZPpucgpGowYKulh3AmomTiECc.mp4?stp=dst-mp4&efg=eyJxZV9ncm91cHMiOiJbXCJpZ193ZWJfZGVsaXZlcnlfdnRzX290ZlwiXSIsInZlbmNvZGVfdGFnIjoidnRzX3ZvZF91cmxnZW4uY2xpcHMuYzIuNzIwLmJhc2VsaW5lIn0&_nc_cat=110&vs=1123914736090327_2004971061&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8xNzRGRTM0NzIzQUVFNDBENTVGQUVEOTdCM0MzQUU4NV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HRERLYVIydGxzaGYwMWtIQUdyaE5SaWZ3ZFFIYnFfRUFBQUYVAgLIARIAKAAYABsAFQAAJtLPi%2FW6684%2FFQIoAkMzLBdAQwztkWhysBgSZGFzaF9iYXNlbGluZV8xX3YxEQB1%2Fgdl5p0BAA%3D%3D&_nc_rid=443b81e6a9&ccb=9-4&oh=00_AfMg9NUoS_RCVGxJzHIQeppcVco4FTbXjoq5xaS5i5o3AA&oe=685632F7&_nc_sid=8b3546",
                              "video_view_count": 1870,
                              "edge_media_to_caption": {
                                "edges": []
                              },
                              "edge_media_to_comment": {
                                "count": 14
                              },
                              "comments_disabled": false,
                              "taken_at_timestamp": 1746059630,
                              "edge_liked_by": {
                                "count": 131
                              },
                              "edge_media_preview_like": {
                                "count": 131
                              },
                              "location": null,
                              "nft_asset_info": null,
                              "thumbnail_src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfPtuS1pX4lCrFcqaqf28LYqOKhm388RGITip3ezIQa3xg&oe=685A1889&_nc_sid=8b3546",
                              "thumbnail_tall_src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=dst-jpg_e15_tt6&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfN3JWSxHXGRcVbzi4bEP0e42CF-gmZRTwPGLuprdlJGuQ&oe=685A1889&_nc_sid=8b3546",
                              "thumbnail_resources": [
                                {
                                  "src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6ImltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4Lm5mcmFtZV9jb3Zlcl9mcmFtZSJ9&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfMTtR_qbPhnbuudBcbRh_hbPXzrNUyY2-bhqZ85cQrazA&oe=685A1889&_nc_sid=8b3546",
                                  "config_width": 150,
                                  "config_height": 150
                                },
                                {
                                  "src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_s240x240_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6ImltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4Lm5mcmFtZV9jb3Zlcl9mcmFtZSJ9&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfNRkH10wSAf-1v4_p9lzWmsvBBmZSDAGZUriikU87ZjoA&oe=685A1889&_nc_sid=8b3546",
                                  "config_width": 240,
                                  "config_height": 240
                                },
                                {
                                  "src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_s320x320_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6ImltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4Lm5mcmFtZV9jb3Zlcl9mcmFtZSJ9&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfM4_oFn-y-n-R9WgA10Ltmy3A3weV0m6JGaUfQ5Nx72dA&oe=685A1889&_nc_sid=8b3546",
                                  "config_width": 320,
                                  "config_height": 320
                                },
                                {
                                  "src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_s480x480_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6ImltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4Lm5mcmFtZV9jb3Zlcl9mcmFtZSJ9&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfOj-8tYyymreaxMKp97bJF-iOIKkJLDBgik_bbBcF9dRg&oe=685A1889&_nc_sid=8b3546",
                                  "config_width": 480,
                                  "config_height": 480
                                },
                                {
                                  "src": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/491901123_9680674652022458_2870310738491256504_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6ImltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4Lm5mcmFtZV9jb3Zlcl9mcmFtZSJ9&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=102&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=3VMXYLESR9UQ7kNvwHFuMDk&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfPtuS1pX4lCrFcqaqf28LYqOKhm388RGITip3ezIQa3xg&oe=685A1889&_nc_sid=8b3546",
                                  "config_width": 640,
                                  "config_height": 640
                                }
                              ],
                              "felix_profile_grid_crop": null,
                              "tall_profile_grid_crop": null,
                              "profile_grid_thumbnail_fitting_style": "UNSET",
                              "coauthor_producers": [],
                              "pinned_for_users": [],
                              "viewer_can_reshare": true,
                              "like_and_view_counts_disabled": false,
                              "product_type": "clips",
                              "clips_music_attribution_info": {
                                "artist_name": "adrianhorning",
                                "song_name": "Original audio",
                                "uses_original_audio": true,
                                "should_mute_audio": false,
                                "should_mute_audio_reason": "",
                                "audio_id": "1052522106930425"
                              }
                            }
                          }
                        ]
                      },
                      "edge_media_collections": {
                        "count": 0,
                        "page_info": {
                          "has_next_page": false,
                          "end_cursor": null
                        },
                        "edges": []
                      },
                      "edge_related_profiles": {
                        "edges": [
                          {
                            "node": {
                              "id": "66873381803",
                              "full_name": "ally krinsky",
                              "is_private": false,
                              "is_verified": false,
                              "profile_pic_url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/465249338_1115706923297633_2956285260068952346_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2QHGD17MFSxvG6A4al-hcbMWJBsese4bMwMX39i8kBtCx0S4j1OYDyxMqJNJrP1lEEI&_nc_ohc=Tsg6TtnhEjYQ7kNvwGMqyjy&_nc_gid=SOClLZ7awnLvrffwVXt_dA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfMROscsMYIyI5Fk8bU4J0EDI0TAVDiLmama26HDm3Sb5g&oe=685A28B1&_nc_sid=8b3546",
                              "username": "itsallykrinsky"
                            }
                          }
                        ]
                      }
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramProfileResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/basic-profile": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.012,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_basic_profile",
        "summary": "Basic Profile",
        "description": "Returns a compact public profile for a numeric Instagram user id, about 4 KB against the 380 KB of get_instagram_profile. Flat, already-normalised fields: username, full_name, biography, follower_count, following_count, is_verified, is_private, category, profile_pic_url, hd_profile_pic_url_info, bio_links, external_url and pk. Prefer this endpoint whenever the id is in hand; obtain it from data.user.id in get_instagram_profile, from id in get_instagram_search_profiles, or from the owner of any post. Use get_instagram_profile only when a handle is all that is available.",
        "parameters": [
          {
            "name": "userId",
            "in": "query",
            "required": false,
            "description": "Instagram user id",
            "schema": {
              "type": "string"
            },
            "example": "314216"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "friendship_status": null,
                  "gating": null,
                  "is_memorialized": false,
                  "is_private": false,
                  "has_story_archive": null,
                  "supervision_info": null,
                  "is_regulated_c18": false,
                  "regulated_news_in_locations": [],
                  "bio_links": [],
                  "linked_fb_info": null,
                  "text_post_app_badge_label": "zuck",
                  "show_text_post_app_badge": true,
                  "username": "zuck",
                  "text_post_new_post_count": null,
                  "pk": "314216",
                  "live_broadcast_visibility": null,
                  "live_broadcast_id": null,
                  "profile_pic_url": "https://instagram.fpoz4-1.fna.fbcdn.net/v/t51.2885-19/550234512_18532404670058217_8758519395071163708_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=instagram.fpoz4-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QENWmroLq0Z2oxDXF-wYN4Txpcg88E2n5GZTMYtQgXKAlUWi1gMsQQilbgL7mYspgA&_nc_ohc=vS_PAWzWFjcQ7kNvwEe9m50&_nc_gid=AOVYXTTsY5VI85UshvRoHA&edm=ALGbJPMBAAAA&ccb=7-5&oh=00_AfcUDbyLkAcHCLaaiVpvfv4AvlKuZUdsos_eZmuWHS02NQ&oe=68EB29FB&_nc_sid=7d3ac5",
                  "hd_profile_pic_url_info": {
                    "url": "https://instagram.fpoz4-1.fna.fbcdn.net/v/t51.2885-19/550234512_18532404670058217_8758519395071163708_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=instagram.fpoz4-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QENWmroLq0Z2oxDXF-wYN4Txpcg88E2n5GZTMYtQgXKAlUWi1gMsQQilbgL7mYspgA&_nc_ohc=vS_PAWzWFjcQ7kNvwEe9m50&_nc_gid=AOVYXTTsY5VI85UshvRoHA&edm=ALGbJPMBAAAA&ccb=7-5&oh=00_AfcBW_k3ngIbA43oUKKZ9SPx-FtlrQSSbOWg8npnXGqCcg&oe=68EB29FB&_nc_sid=7d3ac5"
                  },
                  "is_unpublished": false,
                  "latest_reel_media": 0,
                  "has_profile_pic": null,
                  "profile_pic_genai_tool_info": [],
                  "biography": "I build stuff",
                  "full_name": "Mark Zuckerberg",
                  "is_verified": true,
                  "show_account_transparency_details": true,
                  "account_type": 3,
                  "follower_count": 16101999,
                  "mutual_followers_count": null,
                  "profile_context_links_with_user_ids": null,
                  "address_street": null,
                  "city_name": null,
                  "is_business": false,
                  "zip": null,
                  "biography_with_entities": {
                    "entities": []
                  },
                  "category": null,
                  "should_show_category": false,
                  "account_badges": [],
                  "ai_agent_type": null,
                  "external_lynx_url": null,
                  "external_url": "",
                  "pronouns": [],
                  "transparency_label": null,
                  "transparency_product": null,
                  "has_chaining": null,
                  "remove_message_entrypoint": null,
                  "fbid_v2": "17841401746480004",
                  "is_embeds_disabled": false,
                  "is_professional_account": null,
                  "following_count": 617,
                  "media_count": 409,
                  "total_clips_count": 1,
                  "latest_besties_reel_media": null,
                  "reel_media_seen_timestamp": null,
                  "id": "314216"
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramBasicProfileResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/user/posts": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_user_posts",
        "summary": "User Posts",
        "description": "Returns one page of a public account's timeline, reels and photos and carousels alike, as raw Instagram media objects under items. Page with next_max_id and stop on more_available; num_results reports the page size. Each item carries media_type, code, caption, like_count, comment_count, taken_at, image_versions2 and video_versions among roughly two hundred internal flags. Measured at 632 KB per page, the largest response in this API, and trim=true only reduces it to 523 KB. For reels alone use get_instagram_user_reels, and for one known post use get_instagram_post; both return the same raw shape, so neither is a way to get a smaller payload.",
        "parameters": [
          {
            "name": "handle",
            "in": "query",
            "required": true,
            "description": "Instagram handle",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "next_max_id",
            "in": "query",
            "required": false,
            "description": "Cursor to get next page of results.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "trim",
            "in": "query",
            "required": false,
            "description": "Set to true to get a trimmed response",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "items": [
                    {
                      "id": "3644028144127958689_59042353222",
                      "code": "DKSMEpKRd6h",
                      "media_type": 2,
                      "taken_at": 1748622051,
                      "caption": {
                        "bit_flags": 0,
                        "created_at": 1748622053,
                        "created_at_utc": 1748622053,
                        "did_report_as_spam": false,
                        "is_ranked_comment": false,
                        "pk": "17916912093071427",
                        "share_enabled": false,
                        "content_type": "comment",
                        "media_id": "3644028144127958689",
                        "status": "Active",
                        "type": 1,
                        "user_id": "59042353222",
                        "strong_id__": "17916912093071427",
                        "text": "5 best college baseball regional plays for day 1",
                        "user": {
                          "pk": "59042353222",
                          "pk_id": "59042353222",
                          "id": "59042353222",
                          "full_name": "Carson Szeder",
                          "is_private": false,
                          "is_unpublished": false,
                          "strong_id__": "59042353222",
                          "fbid_v2": "17841459076660294",
                          "username": "carsoncantcode",
                          "is_verified": true,
                          "profile_pic_id": "3318246086567523250_59042353222",
                          "profile_pic_url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfP_ozLRxIquMfrVuFJ1MP_CwqFycc2hoq8Xc9x89Tyx_g&oe=685A4097&_nc_sid=ee9879"
                        },
                        "is_covered": false,
                        "private_reply_status": 0
                      },
                      "play_count": 2647,
                      "ig_play_count": 2643,
                      "comment_count": 7,
                      "like_count": 29,
                      "display_uri": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-15/502710192_1957567931446141_1822523212661288021_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=ng-epM2kdRMQ7kNvwHHDPMi&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfOIfw4eK3gmQ8rB8XmU3AgCiDHwFyd4oi4o_VEuOBoWOg&oe=685A1A4E&_nc_sid=ee9879",
                      "user": {
                        "fbid_v2": "17841459076660294",
                        "feed_post_reshare_disabled": false,
                        "full_name": "Carson Szeder",
                        "id": "59042353222",
                        "is_private": false,
                        "is_unpublished": false,
                        "pk": "59042353222",
                        "pk_id": "59042353222",
                        "show_account_transparency_details": true,
                        "strong_id__": "59042353222",
                        "third_party_downloads_enabled": 1,
                        "account_type": 3,
                        "account_badges": [],
                        "fan_club_info": {
                          "autosave_to_exclusive_highlight": null,
                          "connected_member_count": null,
                          "fan_club_id": null,
                          "fan_club_name": null,
                          "has_created_ssc": null,
                          "has_enough_subscribers_for_ssc": null,
                          "is_fan_club_gifting_eligible": null,
                          "is_fan_club_referral_eligible": null,
                          "is_free_trial_eligible": null,
                          "largest_public_bc_id": null,
                          "subscriber_count": null,
                          "fan_consideration_page_revamp_eligiblity": null
                        },
                        "has_anonymous_profile_picture": false,
                        "hd_profile_pic_url_info": {
                          "height": 633,
                          "url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfMSK6EX4bRxpdThMOgOdvKaORBx3RCo1QjtMxsbHx813A&oe=685A4097&_nc_sid=ee9879",
                          "width": 633
                        },
                        "hd_profile_pic_versions": [
                          {
                            "height": 320,
                            "url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfNOvmXHru1CI6pJxyfmTlcl9UwzjKz6kH-b_YFGsvKQ9g&oe=685A4097&_nc_sid=ee9879",
                            "width": 320
                          }
                        ],
                        "is_verified": true,
                        "profile_pic_id": "3318246086567523250_59042353222",
                        "profile_pic_url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfP_ozLRxIquMfrVuFJ1MP_CwqFycc2hoq8Xc9x89Tyx_g&oe=685A4097&_nc_sid=ee9879",
                        "transparency_product_enabled": false,
                        "username": "carsoncantcode",
                        "is_embeds_disabled": false,
                        "eligible_for_text_app_activation_badge": false
                      },
                      "owner": {
                        "fbid_v2": "17841459076660294",
                        "feed_post_reshare_disabled": false,
                        "full_name": "Carson Szeder",
                        "id": "59042353222",
                        "is_private": false,
                        "is_unpublished": false,
                        "pk": "59042353222",
                        "pk_id": "59042353222",
                        "show_account_transparency_details": true,
                        "strong_id__": "59042353222",
                        "third_party_downloads_enabled": 1,
                        "can_see_quiet_post_attribution": true,
                        "account_type": 3,
                        "account_badges": [],
                        "fan_club_info": {
                          "autosave_to_exclusive_highlight": null,
                          "connected_member_count": null,
                          "fan_club_id": null,
                          "fan_club_name": null,
                          "has_created_ssc": null,
                          "has_enough_subscribers_for_ssc": null,
                          "is_fan_club_gifting_eligible": null,
                          "is_fan_club_referral_eligible": null,
                          "is_free_trial_eligible": null,
                          "largest_public_bc_id": null,
                          "subscriber_count": null,
                          "fan_consideration_page_revamp_eligiblity": null
                        },
                        "has_anonymous_profile_picture": false,
                        "hd_profile_pic_url_info": {
                          "height": 633,
                          "url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfMSK6EX4bRxpdThMOgOdvKaORBx3RCo1QjtMxsbHx813A&oe=685A4097&_nc_sid=ee9879",
                          "width": 633
                        },
                        "hd_profile_pic_versions": [
                          {
                            "height": 320,
                            "url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfNOvmXHru1CI6pJxyfmTlcl9UwzjKz6kH-b_YFGsvKQ9g&oe=685A4097&_nc_sid=ee9879",
                            "width": 320
                          }
                        ],
                        "is_verified": true,
                        "profile_pic_id": "3318246086567523250_59042353222",
                        "profile_pic_url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfP_ozLRxIquMfrVuFJ1MP_CwqFycc2hoq8Xc9x89Tyx_g&oe=685A4097&_nc_sid=ee9879",
                        "transparency_product_enabled": false,
                        "username": "carsoncantcode",
                        "is_embeds_disabled": false,
                        "eligible_for_text_app_activation_badge": false
                      },
                      "image_versions2": {
                        "additional_candidates": {
                          "first_frame": {
                            "height": 1136,
                            "url": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/502608920_587032841104047_520039248454188749_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4LmFkZGl0aW9uYWxfY292ZXJfZnJhbWUifQ&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=UmnNszq3yrMQ7kNvwFrKy8f&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfPXJLoL0tbpHfbhYLn-UBI1wjXiWeybU6nGob9Db-fQLQ&oe=685A1308&_nc_sid=ee9879",
                            "width": 640
                          },
                          "igtv_first_frame": {
                            "height": 1136,
                            "url": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/502608920_587032841104047_520039248454188749_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4LmFkZGl0aW9uYWxfY292ZXJfZnJhbWUifQ&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=UmnNszq3yrMQ7kNvwFrKy8f&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfPXJLoL0tbpHfbhYLn-UBI1wjXiWeybU6nGob9Db-fQLQ&oe=685A1308&_nc_sid=ee9879",
                            "width": 640
                          },
                          "smart_frame": null
                        },
                        "candidates": [
                          {
                            "height": 1136,
                            "url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-15/502710192_1957567931446141_1822523212661288021_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4Lm5mcmFtZV9jb3Zlcl9mcmFtZSJ9&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=101&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=ng-epM2kdRMQ7kNvwHHDPMi&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&ig_cache_key=MzY0NDAyODE0NDEyNzk1ODY4OQ%3D%3D.3-ccb7-5&oh=00_AfM7Qh-4MOEJSG5Ml_l1YzF9CHN6QizTM5-4Xc3UZo-bxw&oe=685A1A4E&_nc_sid=ee9879",
                            "width": 640
                          }
                        ],
                        "scrubber_spritesheet_info_candidates": {
                          "default": {
                            "file_size_kb": 388,
                            "max_thumbnails_per_sprite": 105,
                            "rendered_width": 96,
                            "sprite_height": 1246,
                            "sprite_urls": [
                              "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-15/502708871_1436358334024784_3923116580658609450_n.jpg?_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=108&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=_rnw_74a7UEQ7kNvwGAMYFD&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfMZ8xKy_7T16FYamhGQYxtJkUm_Hypo3pCrDXPWzWTYdQ&oe=685A1A2A&_nc_sid=ee9879"
                            ],
                            "sprite_width": 1500,
                            "thumbnail_duration": 0.6866666666666666,
                            "thumbnail_height": 178,
                            "thumbnail_width": 100,
                            "thumbnails_per_row": 15,
                            "total_thumbnail_num_per_sprite": 105,
                            "video_length": 72.1
                          }
                        }
                      },
                      "product_type": "clips",
                      "music_metadata": null,
                      "is_paid_partnership": false,
                      "video_sticker_locales": [
                        "en"
                      ],
                      "video_versions": [
                        {
                          "bandwidth": null,
                          "height": 852,
                          "type": 101,
                          "url": "https://scontent-lga3-1.cdninstagram.com/o1/v/t16/f2/m86/AQMBOiKBGQDTEPcTzw51q2K7ixLiwkfCual2hfLfJ11K3C6bAOlgqWAEIP4284QXb_Uk-TXekJvIUeAfv--ZX6PWX0s1LbCaDn13iD0.mp4?stp=dst-mp4&efg=eyJxZV9ncm91cHMiOiJbXCJpZ193ZWJfZGVsaXZlcnlfdnRzX290ZlwiXSIsInZlbmNvZGVfdGFnIjoidnRzX3ZvZF91cmxnZW4uY2xpcHMuYzIuNzIwLmJhc2VsaW5lIn0&_nc_cat=111&vs=1201779154524089_749549050&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC84MzQ5RTk3QjExQ0JFNzI0MjZFNDg0ODhDOEIxQkY5NF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HRFluN0IxZWprZHc0XzRFQUFYc3RUZkRKSWxIYnFfRUFBQUYVAgLIARIAKAAYABsAFQAAJsKsv6TxptA%2FFQIoAkMzLBdAUgZmZmZmZhgSZGFzaF9iYXNlbGluZV8xX3YxEQB1%2Fgdl5p0BAA%3D%3D&ccb=9-4&oh=00_AfMavpzRW6PSEKyPgrcVALJs6kfHRNeKjBw8wO82ayG4WA&oe=68562E52&_nc_sid=ee9879",
                          "width": 480
                        }
                      ],
                      "video_duration": 72.1,
                      "has_audio": true,
                      "url": "https://www.instagram.com/p/DKSMEpKRd6h/"
                    }
                  ],
                  "next_max_id": "3639831059405682409_59042353222",
                  "num_results": 12,
                  "more_available": true,
                  "user": {
                    "pk": "59042353222",
                    "pk_id": "59042353222",
                    "full_name": "Carson Szeder",
                    "is_private": false,
                    "is_active_on_text_post_app": true,
                    "strong_id__": "59042353222",
                    "profile_grid_display_type": "default",
                    "id": "59042353222",
                    "username": "carsoncantcode",
                    "is_verified": true,
                    "profile_pic_id": "3318246086567523250_59042353222",
                    "profile_pic_url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-19/431903885_797859762202050_7017850157267325892_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=106&_nc_oc=Q6cZ2QHiEom3hMdlCt1UvbqMoAi8AVMa_QCzMo8Z3JyyueN2RgZ46phuoYGRHEiGNrkRFOg&_nc_ohc=DtppWMlqRCcQ7kNvwEYrxi1&_nc_gid=Eb0J24h8KiM70eUrBpX9HQ&edm=ACWDqb8BAAAA&ccb=7-5&oh=00_AfP_ozLRxIquMfrVuFJ1MP_CwqFycc2hoq8Xc9x89Tyx_g&oe=685A4097&_nc_sid=ee9879"
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramItemsResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/user/reels": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_user_reels",
        "summary": "User Reels",
        "description": "Returns one page of a public account's reels as raw Instagram media objects under items[].media, with paging_info.max_id for the following page. Each reel carries code, caption, like_count, comment_count, video_versions, image_versions2 and clips_metadata, whose original_sound_info.audio_asset_id is exactly the id that get_instagram_song_reels expects. Pass user_id rather than handle for a faster response. Measured at 594 KB per page. Use get_instagram_user_posts for the whole timeline including photos and carousels.",
        "parameters": [
          {
            "name": "user_id",
            "in": "query",
            "required": false,
            "description": "Instagram user id. Use this for faster response times.",
            "schema": {
              "type": "string"
            },
            "example": "2700692569"
          },
          {
            "name": "handle",
            "in": "query",
            "required": false,
            "description": "Instagram handle. Use user_id for faster response times.",
            "schema": {
              "type": "string"
            },
            "example": "jane"
          },
          {
            "name": "max_id",
            "in": "query",
            "required": false,
            "description": "Max id to get more reels. Get 'max_id' from previous response.",
            "schema": {
              "type": "string"
            },
            "example": "QVFCVzNnS2lI...=="
          },
          {
            "name": "trim",
            "in": "query",
            "required": false,
            "description": "Set to true for a trimmed down version of the response",
            "schema": {
              "type": "boolean"
            },
            "example": "false"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "items": [
                    {
                      "id": "3641924023820356866_21393171",
                      "code": "DKKtpqaxg0C",
                      "taken_at": 1748371310,
                      "caption": {
                        "bit_flags": 0,
                        "created_at": 1748371312,
                        "created_at_utc": 1748371312,
                        "did_report_as_spam": false,
                        "is_ranked_comment": false,
                        "pk": "18079986955772842",
                        "share_enabled": false,
                        "content_type": "comment",
                        "media_id": "3641924023820356866",
                        "status": "Active",
                        "type": 1,
                        "user_id": "21393171",
                        "strong_id__": "18079986955772842",
                        "text": "Summer brings out all the girlies, soda, and global warming!!!🤗☀️\n\n#states #utah #idaho #california #oregon #newyork #minnesota #arizona #alaska #girlies #jane #janeinsane #eastcoast #westcoast #drama",
                        "user": {
                          "pk": "21393171",
                          "pk_id": "21393171",
                          "id": "21393171",
                          "full_name": "Jane Williamson",
                          "is_private": false,
                          "is_unpublished": false,
                          "strong_id__": "21393171",
                          "fbid_v2": "17841400515130334",
                          "username": "jane",
                          "is_verified": true,
                          "profile_pic_id": "3583980709961915639_21393171",
                          "profile_pic_url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfNtjn382KDVjtIjCSaHRLBv-5axcS6DArSz3ceqiChSQw&oe=685A6928&_nc_sid=c024bc"
                        },
                        "is_covered": false,
                        "private_reply_status": 0
                      },
                      "play_count": 1685367,
                      "ig_play_count": 1685367,
                      "comment_count": 1096,
                      "like_count": 71768,
                      "display_uri": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-15/501064973_18499642795017172_3156358348692457402_n.jpg?stp=c0.469.1206.1206a_dst-jpg_e35_s1080x1080_sh0.08_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=nqrFLRdKJkgQ7kNvwFsYpnt&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfOZBf0XzICMS0v3EFHyXXbDmGCSkBBSD7yGH4KXyIlC3A&oe=685A3C9E&_nc_sid=c024bc",
                      "user": {
                        "fbid_v2": "17841400515130334",
                        "feed_post_reshare_disabled": false,
                        "full_name": "Jane Williamson",
                        "id": "21393171",
                        "is_private": false,
                        "is_unpublished": false,
                        "pk": "21393171",
                        "pk_id": "21393171",
                        "show_account_transparency_details": true,
                        "strong_id__": "21393171",
                        "third_party_downloads_enabled": 2,
                        "account_type": 3,
                        "account_badges": [],
                        "fan_club_info": {
                          "autosave_to_exclusive_highlight": null,
                          "connected_member_count": null,
                          "fan_club_id": null,
                          "fan_club_name": null,
                          "has_created_ssc": null,
                          "has_enough_subscribers_for_ssc": null,
                          "is_fan_club_gifting_eligible": null,
                          "is_fan_club_referral_eligible": null,
                          "is_free_trial_eligible": null,
                          "largest_public_bc_id": null,
                          "subscriber_count": null,
                          "fan_consideration_page_revamp_eligiblity": null
                        },
                        "has_anonymous_profile_picture": false,
                        "hd_profile_pic_url_info": {
                          "height": 1024,
                          "url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfMxQOnDe9llEUmo1gBn1-P5uo-mPtoJ4lTyy_GhgpgIkg&oe=685A6928&_nc_sid=c024bc",
                          "width": 1024
                        },
                        "hd_profile_pic_versions": [
                          {
                            "height": 320,
                            "url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfOxDHstKKV5WkD6-9aKBxJ0mTttI5R3bZ26ZQn9Mg84Og&oe=685A6928&_nc_sid=c024bc",
                            "width": 320
                          }
                        ],
                        "is_verified": true,
                        "profile_pic_id": "3583980709961915639_21393171",
                        "profile_pic_url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfNtjn382KDVjtIjCSaHRLBv-5axcS6DArSz3ceqiChSQw&oe=685A6928&_nc_sid=c024bc",
                        "transparency_product_enabled": false,
                        "username": "jane",
                        "is_embeds_disabled": false,
                        "eligible_for_text_app_activation_badge": false
                      },
                      "owner": {
                        "fbid_v2": "17841400515130334",
                        "feed_post_reshare_disabled": false,
                        "full_name": "Jane Williamson",
                        "id": "21393171",
                        "is_private": false,
                        "is_unpublished": false,
                        "pk": "21393171",
                        "pk_id": "21393171",
                        "show_account_transparency_details": true,
                        "strong_id__": "21393171",
                        "third_party_downloads_enabled": 2,
                        "account_type": 3,
                        "account_badges": [],
                        "fan_club_info": {
                          "autosave_to_exclusive_highlight": null,
                          "connected_member_count": null,
                          "fan_club_id": null,
                          "fan_club_name": null,
                          "has_created_ssc": null,
                          "has_enough_subscribers_for_ssc": null,
                          "is_fan_club_gifting_eligible": null,
                          "is_fan_club_referral_eligible": null,
                          "is_free_trial_eligible": null,
                          "largest_public_bc_id": null,
                          "subscriber_count": null,
                          "fan_consideration_page_revamp_eligiblity": null
                        },
                        "has_anonymous_profile_picture": false,
                        "hd_profile_pic_url_info": {
                          "height": 1024,
                          "url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfMxQOnDe9llEUmo1gBn1-P5uo-mPtoJ4lTyy_GhgpgIkg&oe=685A6928&_nc_sid=c024bc",
                          "width": 1024
                        },
                        "hd_profile_pic_versions": [
                          {
                            "height": 320,
                            "url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfOxDHstKKV5WkD6-9aKBxJ0mTttI5R3bZ26ZQn9Mg84Og&oe=685A6928&_nc_sid=c024bc",
                            "width": 320
                          }
                        ],
                        "is_verified": true,
                        "profile_pic_id": "3583980709961915639_21393171",
                        "profile_pic_url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=UOwY1iuLY14Q7kNvwF6T6a4&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfNtjn382KDVjtIjCSaHRLBv-5axcS6DArSz3ceqiChSQw&oe=685A6928&_nc_sid=c024bc",
                        "transparency_product_enabled": false,
                        "username": "jane",
                        "is_embeds_disabled": false,
                        "eligible_for_text_app_activation_badge": false
                      },
                      "image_versions2": {
                        "additional_candidates": {
                          "first_frame": {
                            "height": 1136,
                            "url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-15/501249811_1047509020812730_1368766689877144056_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4LmFkZGl0aW9uYWxfY292ZXJfZnJhbWUifQ&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=33QsVTbubdAQ7kNvwG_XAXp&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfOPIDhcaTvUglakLpfaFwY0VG7z_Q7Ua0cIZFWseBY6Iw&oe=685A6296&_nc_sid=c024bc",
                            "width": 640
                          },
                          "igtv_first_frame": {
                            "height": 1136,
                            "url": "https://scontent-lga3-3.cdninstagram.com/v/t51.2885-15/501249811_1047509020812730_1368766689877144056_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi42NDB4MTEzNi5zZHIuZjcxODc4LmFkZGl0aW9uYWxfY292ZXJfZnJhbWUifQ&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=33QsVTbubdAQ7kNvwG_XAXp&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfOPIDhcaTvUglakLpfaFwY0VG7z_Q7Ua0cIZFWseBY6Iw&oe=685A6296&_nc_sid=c024bc",
                            "width": 640
                          },
                          "smart_frame": {
                            "height": 1920,
                            "url": "https://scontent-lga3-2.cdninstagram.com/v/t15.5256-10/502085875_1788049852055333_7728247084856383096_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi4xMDgweDE5MjAuc2RyLmY1MjU2LnN0YXRpY19zbWFydF90aHVtYm5haWxzOjpBTUxfTUxQX0hBTkRDUkFGVF9BTkRfWFJBWV9BRFNfQ1RSX0RJVkVSU0UifQ&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=jVe4YhB4hhcQ7kNvwHLLFGj&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIAAAAA&ccb=7-5&oh=00_AfPE2w7ZHuMdj6JkHfdN0ThY-Qfyhb8JZSwgO0jy3vknFw&oe=685A5983&_nc_sid=c024bc",
                            "width": 1080
                          }
                        },
                        "candidates": [
                          {
                            "height": 2144,
                            "url": "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-15/501064973_18499642795017172_3156358348692457402_n.jpg?stp=dst-jpg_e15_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLmltYWdlX3VybGdlbi4xMjA2eDIxNDQuc2RyLmY3NTc2MS5kZWZhdWx0X2NvdmVyX2ZyYW1lIn0&_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=nqrFLRdKJkgQ7kNvwFsYpnt&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&ig_cache_key=MzY0MTkyNDAyMzgyMDM1Njg2NjE4NDk5NjQyNzkyMDE3MTcy.3-ccb7-5&oh=00_AfOJFvfFxIS1SYZ5aZH9EoStYPO1y4sVrL_f18BDcI4gIA&oe=685A3C9E&_nc_sid=c024bc",
                            "width": 1206
                          }
                        ],
                        "scrubber_spritesheet_info_candidates": {
                          "default": {
                            "file_size_kb": 467,
                            "max_thumbnails_per_sprite": 105,
                            "rendered_width": 96,
                            "sprite_height": 1246,
                            "sprite_urls": [
                              "https://scontent-lga3-2.cdninstagram.com/v/t51.2885-15/501930551_1739874873569815_2195383679016609522_n.jpg?_nc_ht=scontent-lga3-2.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2QHH_AuDym1_h_Gt35CeYD9UUv5wiBJykWgz0pzbdkl_7HVH1k09gFjEGZGaaanoHrw&_nc_ohc=WQsolWkGTbEQ7kNvwGnCcen&_nc_gid=26ktQKWC9pWQuqHYOHHLSQ&edm=ACHbZRIBAAAA&ccb=7-5&oh=00_AfPA-bQmtGEM1tlWBC9ycNBKmLQXZ8HhuCQqTxZcKAwTNg&oe=685A34DF&_nc_sid=c024bc"
                            ],
                            "sprite_width": 1500,
                            "thumbnail_duration": 0.8703142857142857,
                            "thumbnail_height": 178,
                            "thumbnail_width": 100,
                            "thumbnails_per_row": 15,
                            "total_thumbnail_num_per_sprite": 105,
                            "video_length": 91.383
                          }
                        }
                      },
                      "url": "https://www.instagram.com/reel/DKKtpqaxg0C/"
                    }
                  ],
                  "max_id": "QVFEWFlDdGNOamdwbVdNM2pLY1NJRndSZ2tCbWp6WDV0TWxaYl9WNVktZU1BTUxWMlg1c2JFenNDanJVZ2NudWFjR28zRG93a3ByTExXaHJMbTA0aVJBZg=="
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramItemsResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/user/highlights": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_user_highlights",
        "summary": "User Highlights",
        "description": "Lists the story highlight albums on a public profile. Returns highlights, each with the numeric id, title, cover_media.thumbnail_src, cover_media_cropped_thumbnail and owner. Small and quick at about 6 KB, which makes it a cheap way to see whether an account keeps highlights at all. This is the only source of a highlight id, and get_instagram_user_highlight_detail requires the bare numeric id exactly as returned here. Pass user_id rather than handle for a faster response.",
        "parameters": [
          {
            "name": "user_id",
            "in": "query",
            "required": false,
            "description": "Instagram user id. Use for faster response times.",
            "schema": {
              "type": "string"
            },
            "example": "2700692569"
          },
          {
            "name": "handle",
            "in": "query",
            "required": false,
            "description": "Instagram handle. Use user_id for faster response times.",
            "schema": {
              "type": "string"
            },
            "example": "jane"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "highlights": [
                    {
                      "__typename": "GraphHighlightReel",
                      "id": "18067016518767507",
                      "cover_media": {
                        "thumbnail_src": "https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/479737232_1405856350793820_7928432152706230890_n.jpg?stp=c0.248.640.640a_dst-jpg_e15_tt6&_nc_ht=scontent-atl3-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2QFp33CnPIjTITbJL483a_ZGgbaCZ_M2CLjXKDaTtNtjnH0vMIJHdZhYlMp8pitL7H0&_nc_ohc=yQlHN7CDZ7IQ7kNvwFL7xsz&_nc_gid=_FojUPY_PyEb8t9oWJExMQ&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_AfL3lEQ_ujUci_Xg8fnjYX3nityUOfroonJnwKyr9yKWdg&oe=682184F5&_nc_sid=94fea1"
                      },
                      "cover_media_cropped_thumbnail": {
                        "url": "https://scontent-atl3-1.cdninstagram.com/v/t51.2885-15/479737232_1405856350793820_7928432152706230890_n.jpg?stp=c0.202.640.640a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-atl3-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2QFp33CnPIjTITbJL483a_ZGgbaCZ_M2CLjXKDaTtNtjnH0vMIJHdZhYlMp8pitL7H0&_nc_ohc=yQlHN7CDZ7IQ7kNvwFL7xsz&_nc_gid=_FojUPY_PyEb8t9oWJExMQ&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_AfL4zidNtWdVh-3T2E2qOiLS4ks_Z9UbmTSFbCX3SFmbBg&oe=682184F5&_nc_sid=94fea1"
                      },
                      "owner": {
                        "__typename": "GraphUser",
                        "id": "21393171",
                        "profile_pic_url": "https://scontent-atl3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-atl3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QFp33CnPIjTITbJL483a_ZGgbaCZ_M2CLjXKDaTtNtjnH0vMIJHdZhYlMp8pitL7H0&_nc_ohc=mi86alqirjwQ7kNvwHuN1wX&_nc_gid=_FojUPY_PyEb8t9oWJExMQ&edm=AGW0Xe4BAAAA&ccb=7-5&oh=00_AfLoz8BQ5BXQz1Wm0goIWDxkdw5Z1aNbJGXk8ak6YZ8pzQ&oe=68218068&_nc_sid=94fea1",
                        "username": "jane"
                      },
                      "title": "GRWM chats"
                    }
                  ]
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramHighlightsResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/user/highlight/detail": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_user_highlight_detail",
        "summary": "Highlight Detail",
        "description": "Returns the stories inside one highlight album: reel_type, latest_reel_media, the owning user, and items, each a raw Instagram story media object. Pass the bare numeric id from get_instagram_user_highlights. The response echoes that id back in the prefixed form highlight:<id>, and feeding the prefixed form to this endpoint returns 404 with a message blaming deletion or a private account, which points at the wrong cause; send the bare number. Measured at 630 KB for an album of 38 stories, so size scales with the album.",
        "parameters": [
          {
            "name": "id",
            "in": "query",
            "required": false,
            "description": "Highlight ID. Use `/instagram/user/highlights` to discover current highlight IDs for a public account.",
            "schema": {
              "type": "string"
            },
            "example": "18029499352961095"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "id": "highlight:18067016518767507",
                  "latest_reel_media": 1745272279,
                  "seen": null,
                  "can_reply": false,
                  "can_gif_quick_reply": true,
                  "can_reshare": true,
                  "reel_type": "highlight_reel",
                  "ad_expiry_timestamp_in_millis": null,
                  "is_cta_sticker_available": null,
                  "app_sticker_info": null,
                  "should_treat_link_sticker_as_cta": null,
                  "pool_refresh_ttl_in_sec": null,
                  "can_react_with_avatar": false,
                  "cover_media": {
                    "cropped_image_version": {
                      "width": 150,
                      "height": 150,
                      "url": "https://scontent-dub4-1.cdninstagram.com/v/t51.2885-15/479737232_1405856350793820_7928432152706230890_n.jpg?stp=c0.202.640.640a_dst-jpg_e15_s150x150_tt6&_nc_ht=scontent-dub4-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2QGmly2VJEPPnYd3yasHydMcSwfCazUKlRXiU5HUJ-zQVPrC9Xb-ho-EFRAjvcUgWnY&_nc_ohc=yQlHN7CDZ7IQ7kNvwFIJktj&_nc_gid=-RHeydtWtdTLhayCKiI3oQ&edm=ANmP7GQBAAAA&ccb=7-5&oh=00_AfKKWP06eveppAsTaksGtYoLYb_lesIro1a34w-gEGgJ8A&oe=682184F5&_nc_sid=982cc7",
                      "scans_profile": ""
                    },
                    "crop_rect": [
                      0
                    ],
                    "media_id": "3574665805209826888_21393171",
                    "full_image_version": null,
                    "upload_id": null
                  },
                  "user": {
                    "pk": "21393171",
                    "pk_id": "21393171",
                    "full_name": "Jane Williamson",
                    "is_private": false,
                    "strong_id__": "21393171",
                    "id": "21393171",
                    "username": "jane",
                    "is_verified": true,
                    "profile_pic_id": "3583980709961915639_21393171",
                    "profile_pic_url": "https://scontent-dub4-1.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-dub4-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QGmly2VJEPPnYd3yasHydMcSwfCazUKlRXiU5HUJ-zQVPrC9Xb-ho-EFRAjvcUgWnY&_nc_ohc=mi86alqirjwQ7kNvwFr3H5A&_nc_gid=-RHeydtWtdTLhayCKiI3oQ&edm=ANmP7GQBAAAA&ccb=7-5&oh=00_AfIKcWUsUpfsBZW0eePl0Z6La3wJHY0FPIj7QRpbwooklA&oe=68218068&_nc_sid=982cc7",
                    "interop_messaging_user_fbid": 119713162748634,
                    "transparency_product_enabled": false
                  },
                  "items": [
                    {
                      "pk": "3565907942018983442",
                      "id": "3565907942018983442_21393171",
                      "is_visual_reply_commenter_notice_enabled": true,
                      "like_and_view_counts_disabled": false,
                      "is_post_live_clips_media": false,
                      "is_reshare_of_text_post_app_media_in_ig": false,
                      "is_reel_media": true,
                      "fbid": "17968033766718273",
                      "device_timestamp": 1739309362129426,
                      "caption_is_edited": false,
                      "strong_id__": "3565907942018983442_21393171",
                      "is_quicksnap_recap": false,
                      "deleted_reason": 0,
                      "mezql_token": "",
                      "imported_taken_at": 1739305646,
                      "should_request_ads": false,
                      "is_terminal_video_segment": false,
                      "integrity_review_decision": "pending",
                      "client_cache_key": "MzU2NTkwNzk0MjAxODk4MzQ0Mg==.3",
                      "comment_threading_enabled": true,
                      "is_unified_video": false,
                      "commerciality_status": "not_commercial",
                      "caption_position": 0,
                      "has_privately_liked": false,
                      "filter_type": 0,
                      "taken_at": 1739309361,
                      "hide_view_all_comment_entrypoint": false,
                      "is_comments_gif_composer_enabled": false,
                      "video_sticker_locales": [],
                      "is_dash_eligible": 1,
                      "video_dash_manifest": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<MPD xmlns=\"urn:mpeg:dash:schema:mpd:2011\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"urn:mpeg:dash:schema:mpd:2011 DASH-MPD.xsd\" profiles=\"urn:mpeg:dash:profile:isoff-on-demand:2011\" minBufferTime=\"PT2S\" type=\"static\" mediaPresentationDuration=\"PT55.866665S\" FBManifestIdentifier=\"FgAYEWlnX2Rhc2hfYmFzaWNfdnA5GVakidDNlteaArDgzvCy78QDoofA1en7zAOewtDZrN6hBPqfhZ22qqYiIhgYZGFzaF9sbl9oZWFhY192YnIzX2F1ZGlvIgA=\"><Period id=\"0\" duration=\"PT55.866665S\"><AdaptationSet id=\"0\" contentType=\"video\" subsegmentAlignment=\"true\" par=\"9:16\" FBUnifiedUploadResolutionMos=\"360:87.8\"><Representation id=\"1013678003978705vd\" bandwidth=\"442825\" codecs=\"vp09.00.21.08.01.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_vp9-basic-gen2_360p\" FBContentLength=\"3092396\" FBPlaybackResolutionMos=\"0:100,360:76.2,480:68.3,720:55.5,1080:42.6\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:90.6,480:83.1,720:70.6,1080:57.1\" width=\"360\" height=\"640\" frameRate=\"15360/512\" FBDefaultQuality=\"1\" FBQualityClass=\"sd\" FBQualityLabel=\"360p\"><BaseURL>https://scontent-dub4-1.cdninstagram.com/o1/v/t2/f2/m367/AQOfoUrcpLyCypvA0r8KJNYVZqRMK_xKgHt6BIIR-2d-pZc8HrSUxb_ADpVH2fHJ_Jga14in9wNDQMKL8YmnSyh2SyuBIi1wH-0GagOjJyNiPExeppA3tiJXWvimPCV3DixoO1Bq.mp4?_nc_cat=108&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-dub4-1.cdninstagram.com&amp;_nc_ohc=jqHP6zi0XkIQ7kNvwHHEdKy&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLnN0b3J5LmMyLUMzLmRhc2hfdnA5LWJhc2ljLWdlbjJfMzYwcCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjoxMzc3ODEwOTUzMzg3NzQ2LCJ2aV91c2VjYXNlX2lkIjoxMDEwMCwiZHVyYXRpb25fcyI6NTUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfJeY5DgeknyRN-Oj5qSXRKzB0wL9yWYB4PyUjf9wvqfgQ&amp;oe=682162E0</BaseURL><SegmentBase indexRange=\"818-993\" timescale=\"15360\" FBMinimumPrefetchRange=\"994-24037\" FBFirstSegmentRange=\"994-284754\" FBFirstSegmentDuration=\"5000\" FBSecondSegmentRange=\"284755-582397\" FBPrefetchSegmentRange=\"994-284754\" FBPrefetchSegmentDuration=\"5000\"><Initialization range=\"0-817\"/></SegmentBase></Representation><Representation id=\"621622240870994v\" bandwidth=\"1213073\" codecs=\"vp09.00.30.08.01.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_vp9-basic-gen2_540p\" FBContentLength=\"8471295\" FBPlaybackResolutionMos=\"0:100,360:88.4,480:83.5,720:75.1,1080:65\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:96,480:94.4,720:89.5,1080:80.1\" width=\"540\" height=\"960\" frameRate=\"15360/512\" FBQualityClass=\"sd\" FBQualityLabel=\"540p\"><BaseURL>https://scontent-dub4-1.cdninstagram.com/o1/v/t2/f2/m367/AQNVYK_LcjKX7BfZe6teyHabLQAnRYyvQ0OaomvrOYVCPI39q3Mua18SLdXRP1rLDAWZtmaw0daxwozitRR7QuRlk-yu0u6aNkSo6bVRxWiHWJMrsuFUpZ3wEXzsglQDn__HYhrE.mp4?_nc_cat=101&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-dub4-1.cdninstagram.com&amp;_nc_ohc=YsOmqegW-HAQ7kNvwHvk5t6&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLnN0b3J5LmMyLUMzLmRhc2hfdnA5LWJhc2ljLWdlbjJfNTQwcCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjoxMzc3ODEwOTUzMzg3NzQ2LCJ2aV91c2VjYXNlX2lkIjoxMDEwMCwiZHVyYXRpb25fcyI6NTUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfJClU-cSxarTYZZelf4X843_PLNlpHXaOVA8JeQ4P6KjA&amp;oe=682163B3</BaseURL><SegmentBase indexRange=\"818-993\" timescale=\"15360\" FBMinimumPrefetchRange=\"994-47780\" FBFirstSegmentRange=\"994-766720\" FBFirstSegmentDuration=\"5000\" FBSecondSegmentRange=\"766721-1575879\" FBPrefetchSegmentRange=\"994-766720\" FBPrefetchSegmentDuration=\"5000\"><Initialization range=\"0-817\"/></SegmentBase></Representation><Representation id=\"1200088581542031v\" bandwidth=\"2208026\" codecs=\"vp09.00.31.08.01.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_vp9-basic-gen2_720p\" FBContentLength=\"15419382\" FBPlaybackResolutionMos=\"0:100,360:93.3,480:90.1,720:83,1080:71.9\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:97.5,480:96.5,720:94.3,1080:86.5\" width=\"720\" height=\"1280\" frameRate=\"15360/512\" FBQualityClass=\"hd\" FBQualityLabel=\"720p\"><BaseURL>https://scontent-dub4-1.cdninstagram.com/o1/v/t2/f2/m367/AQMZ2fGGIbfKfEB8WZCN2uo1kyDrbZSRTuS9NuKQsm1kdrgBwIgx5uTkgSSwSrg-HwQGBXwyIV6JLLFGIHufr1R3biAaDoj6ef07ZsEglx5OkMyyYPdnMGzVR8ssmYaKJyFG6xTa.mp4?_nc_cat=101&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-dub4-1.cdninstagram.com&amp;_nc_ohc=ZnDVAwVn1J0Q7kNvwFP3y7A&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLnN0b3J5LmMyLUMzLmRhc2hfdnA5LWJhc2ljLWdlbjJfNzIwcCIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjoxMzc3ODEwOTUzMzg3NzQ2LCJ2aV91c2VjYXNlX2lkIjoxMDEwMCwiZHVyYXRpb25fcyI6NTUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfJI3HBj5B_USsbfjD3mig9BmKADRB-WNgDkLiSNcA9AXg&amp;oe=6821608B</BaseURL><SegmentBase indexRange=\"818-993\" timescale=\"15360\" FBMinimumPrefetchRange=\"994-70338\" FBFirstSegmentRange=\"994-1348250\" FBFirstSegmentDuration=\"5000\" FBSecondSegmentRange=\"1348251-2820412\" FBPrefetchSegmentRange=\"994-1348250\" FBPrefetchSegmentDuration=\"5000\"><Initialization range=\"0-817\"/></SegmentBase></Representation><Representation id=\"995872305960984v\" bandwidth=\"2923144\" codecs=\"vp09.00.40.08.01.01.01.01.00\" mimeType=\"video/mp4\" sar=\"1:1\" FBEncodingTag=\"dash_vp9-basic-gen2_1080p\" FBContentLength=\"20413296\" FBPlaybackResolutionMos=\"0:100,360:94.2,480:92.6,720:86.7,1080:78.6\" FBPlaybackResolutionMosConfidenceLevel=\"high\" FBPlaybackResolutionCsvqm=\"0:100,360:97.9,480:97.2,720:95.5,1080:92.4\" width=\"1080\" height=\"1920\" frameRate=\"15360/512\" FBQualityClass=\"hd\" FBQualityLabel=\"1080p\"><BaseURL>https://scontent-dub4-1.cdninstagram.com/o1/v/t2/f2/m367/AQPnP3tyR_xd5vqiR9rHqL4uKAjCLDaAYc0d8G15LFH4_WgzATFrwGXbO3j9AFBXxW_dMMt-bIcZjhcDf9KdKZVBXZfKTpq4NqOdhEyNtKMfJi0pduOiR8a2SGkol-VtVBcSU7y0ow.mp4?_nc_cat=106&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-dub4-1.cdninstagram.com&amp;_nc_ohc=Xh9mj1ql7FsQ7kNvwGfdBze&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLnN0b3J5LmMyLUMzLmRhc2hfdnA5LWJhc2ljLWdlbjJfMTA4MHAiLCJ2aWRlb19pZCI6bnVsbCwib2lsX3VybGdlbl9hcHBfaWQiOjkzNjYxOTc0MzM5MjQ1OSwiY2xpZW50X25hbWUiOiJpZyIsInhwdl9hc3NldF9pZCI6MTM3NzgxMDk1MzM4Nzc0NiwidmlfdXNlY2FzZV9pZCI6MTAxMDAsImR1cmF0aW9uX3MiOjU1LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfIPo5nYW_cUOteJVej4-Or_9EsE1QoCPgFvyhr3gWNKbQ&amp;oe=68217548</BaseURL><SegmentBase indexRange=\"818-993\" timescale=\"15360\" FBMinimumPrefetchRange=\"994-82033\" FBFirstSegmentRange=\"994-1794971\" FBFirstSegmentDuration=\"5000\" FBSecondSegmentRange=\"1794972-3714039\" FBPrefetchSegmentRange=\"994-1794971\" FBPrefetchSegmentDuration=\"5000\"><Initialization range=\"0-817\"/></SegmentBase></Representation></AdaptationSet><AdaptationSet id=\"1\" contentType=\"audio\" subsegmentStartsWithSAP=\"1\" subsegmentAlignment=\"true\"><Representation id=\"9654440924588029ad\" bandwidth=\"84784\" codecs=\"mp4a.40.5\" mimeType=\"audio/mp4\" FBAvgBitrate=\"84784\" audioSamplingRate=\"44100\" FBEncodingTag=\"dash_ln_heaac_vbr3_audio\" FBContentLength=\"593255\" FBPaqMos=\"67.44\" FBDefaultQuality=\"1\"><AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"2\"/><BaseURL>https://scontent-dub4-1.cdninstagram.com/o1/v/t16/f2/m69/AQNyWBRlKnroBxnnX-EpqgZgFfAyiJwI-Shbf9Eq1B1Ma9Pxo26PXQBrs_bIP7SJepuJU3-Yyr9hBKTg1ksLVc5x.mp4?strext=1&amp;_nc_cat=107&amp;_nc_sid=9ca052&amp;_nc_ht=scontent-dub4-1.cdninstagram.com&amp;_nc_ohc=asFzHjDcgjkQ7kNvwGBmUxq&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImlnLXhwdmRzLnN0b3J5LmMyLUMzLmRhc2hfbG5faGVhYWNfdmJyM19hdWRpbyIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6OTM2NjE5NzQzMzkyNDU5LCJjbGllbnRfbmFtZSI6ImlnIiwieHB2X2Fzc2V0X2lkIjoxMzc3ODEwOTUzMzg3NzQ2LCJ2aV91c2VjYXNlX2lkIjoxMDEwMCwiZHVyYXRpb25fcyI6NTUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfI_TGV4rJPmSPk3Kr05twnv4TiuERYpk8DZGhIPelmVBg&amp;oe=68216059</BaseURL><SegmentBase indexRange=\"824-1191\" timescale=\"44100\" FBMinimumPrefetchRange=\"1192-1535\" FBFirstSegmentRange=\"1192-24804\" FBFirstSegmentDuration=\"2021\" FBSecondSegmentRange=\"24805-45822\" FBPrefetchSegmentRange=\"1192-45822\" FBPrefetchSegmentDuration=\"4017\"><Initialization range=\"0-823\"/></SegmentBase></Representation></AdaptationSet></Period></MPD>\n",
                      "number_of_qualities": 4,
                      "video_versions": [
                        {
                          "bandwidth": null,
                          "height": 852,
                          "type": 101,
                          "url": "https://scontent-dub4-1.cdninstagram.com/o1/v/t16/f2/m78/AQN5lthB7AgZeog8GcsUwAQtYg4PrP5y41v_bUs-ydLXFkg6cTCxlHYvYO9pyOGdbZ_h0iB8TpaRmEFn7KAjENMlWQGfsqMod9-9hpU.mp4?stp=dst-mp4&efg=eyJxZV9ncm91cHMiOiJbXCJpZ193ZWJfZGVsaXZlcnlfdnRzX290ZlwiXSIsInZlbmNvZGVfdGFnIjoidnRzX3ZvZF91cmxnZW4uc3RvcnkuYzIuNzIwLmJhc2VsaW5lIn0&_nc_cat=109&vs=622357473721923_1538615199&_nc_vs=HBksFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0EwNEZFM0FDNjFERDBFRDJCNEM3MzVENDg5Rjg0MUIwX3ZpZGVvX2Rhc2hpbml0Lm1wNBUAAsgBABUCGDpwYXNzdGhyb3VnaF9ldmVyc3RvcmUvR0FBRlp4eFJSZ1RQaHJnRUFKMlFxRUgyOGE4dmJwa3dBQUFGFQICyAEAKAAYABsBiAd1c2Vfb2lsATEVAAAmmOLA9%2FDQi0AVAigCQzMsF0BL7tkWhysCGBJkYXNoX2Jhc2VsaW5lXzFfdjERAHXoB2XonQEA&_nc_rid=e09fae6dc1&ccb=9-4&oh=00_AfImyX203uNPxGHYxtNoPwuoBmW0eyV_W9nDNXbdQqs-jw&oe=681D7FBB&_nc_sid=982cc7",
                          "width": 480
                        }
                      ],
                      "video_duration": 55.85,
                      "has_audio": true,
                      "can_viewer_save": false,
                      "shop_routing_user_id": null,
                      "is_organic_product_tagging_eligible": false,
                      "product_suggestions": [],
                      "photo_of_you": false,
                      "can_see_insights_as_brand": false,
                      "media_type": 2,
                      "code": "DF8pmFZySYS",
                      "caption": null,
                      "sharing_friction_info": {
                        "bloks_app_url": null,
                        "should_have_sharing_friction": false,
                        "sharing_friction_payload": null
                      },
                      "timeline_pinned_user_ids": [],
                      "has_translation": false,
                      "original_media_has_visual_reply_media": false,
                      "coauthor_producers": [],
                      "coauthor_producer_can_see_organic_insights": false,
                      "invited_coauthor_producers": [],
                      "is_in_profile_grid": false,
                      "profile_grid_control_enabled": false,
                      "user": {
                        "fbid_v2": "17841400515130334",
                        "full_name": "Jane Williamson",
                        "id": "21393171",
                        "username": "jane"
                      },
                      "owner": {
                        "full_name": "Jane Williamson",
                        "id": "21393171",
                        "is_private": false,
                        "pk": "21393171",
                        "pk_id": "21393171",
                        "strong_id__": "21393171",
                        "account_type": 3,
                        "account_badges": [],
                        "hd_profile_pic_versions": [
                          {
                            "height": 640,
                            "url": "https://scontent-dub4-1.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s640x640_tt6&_nc_ht=scontent-dub4-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QGmly2VJEPPnYd3yasHydMcSwfCazUKlRXiU5HUJ-zQVPrC9Xb-ho-EFRAjvcUgWnY&_nc_ohc=mi86alqirjwQ7kNvwFr3H5A&_nc_gid=-RHeydtWtdTLhayCKiI3oQ&edm=ANmP7GQBAAAA&ccb=7-5&oh=00_AfKHfZWBKEMcV8VY_66mTQTcYrFT7E1o3ZFIYULu6d9U4g&oe=68218068&_nc_sid=982cc7",
                            "width": 640
                          }
                        ],
                        "is_verified": true,
                        "profile_pic_id": "3583980709961915639_21393171",
                        "profile_pic_url": "https://scontent-dub4-1.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-dub4-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QGmly2VJEPPnYd3yasHydMcSwfCazUKlRXiU5HUJ-zQVPrC9Xb-ho-EFRAjvcUgWnY&_nc_ohc=mi86alqirjwQ7kNvwFr3H5A&_nc_gid=-RHeydtWtdTLhayCKiI3oQ&edm=ANmP7GQBAAAA&ccb=7-5&oh=00_AfIKcWUsUpfsBZW0eePl0Z6La3wJHY0FPIj7QRpbwooklA&oe=68218068&_nc_sid=982cc7",
                        "username": "jane"
                      },
                      "image_versions2": {
                        "candidates": [
                          {
                            "width": 640,
                            "height": 1136,
                            "url": "https://scontent-dub4-1.cdninstagram.com/v/t51.2885-15/477141407_979589986999224_2561193507868444490_n.jpg?stp=dst-jpg_e15_tt6&_nc_ht=scontent-dub4-1.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2QGmly2VJEPPnYd3yasHydMcSwfCazUKlRXiU5HUJ-zQVPrC9Xb-ho-EFRAjvcUgWnY&_nc_ohc=BTubnUZn6m0Q7kNvwFRIO27&_nc_gid=-RHeydtWtdTLhayCKiI3oQ&edm=ANmP7GQBAAAA&ccb=7-5&oh=00_AfJFG9jHyUa3ScFpjHIIow0vTwwkmkSJygTELwHelaQf9Q&oe=68215FCA&_nc_sid=982cc7",
                            "scans_profile": ""
                          }
                        ]
                      },
                      "original_width": 1080,
                      "original_height": 1920,
                      "product_type": "story",
                      "is_paid_partnership": false,
                      "music_metadata": null,
                      "ig_media_sharing_disabled": false,
                      "boost_unavailable_identifier": null,
                      "boost_unavailable_reason": null,
                      "boost_unavailable_reason_v2": [],
                      "subscribe_cta_visible": false,
                      "is_cutout_sticker_allowed": false,
                      "cutout_sticker_info": [],
                      "fb_aggregated_like_count": 0,
                      "fb_aggregated_comment_count": 0,
                      "open_carousel_show_follow_button": false,
                      "is_tagged_media_shared_to_viewer_profile_grid": false,
                      "should_show_author_pog_for_tagged_media_shared_to_profile_grid": false,
                      "is_open_to_public_submission": false,
                      "likers": [],
                      "archive_story_deletion_ts": 0,
                      "can_send_prompt": false,
                      "is_first_take": false,
                      "is_from_discovery_surface": false,
                      "is_rollcall_v2": false,
                      "supports_reel_reactions": true,
                      "is_photo_mash_story": false,
                      "can_play_spotify_audio": false,
                      "is_superlative": false,
                      "show_one_tap_fb_share_tooltip": true,
                      "can_reply": false,
                      "can_reshare": true
                    }
                  ],
                  "is_nux": false,
                  "title": "GRWM chats",
                  "created_at": 1743889595,
                  "is_pinned_highlight": false,
                  "prefetch_count": 0,
                  "media_count": 25,
                  "media_ids": [
                    "3565907942018983442"
                  ],
                  "is_converted_to_clips": false,
                  "disabled_reply_types": [
                    "story_remix_reply"
                  ],
                  "highlight_reel_type": "DEFAULT",
                  "is_added_to_main_grid": false,
                  "is_archived": false,
                  "is_fit_green": true
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramHighlightDetailResponse"
                }
              }
            }
          },
          "404": {
            "description": "Highlight not found, deleted, private, or unavailable for the provided highlight ID.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AIsaSocialError"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/user/embed": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_user_embed",
        "summary": "User Embed",
        "description": "Returns Instagram's official profile embed widget for a handle as a single html string, ready to drop into a web page. Measured at about 206 KB, nearly all of it inlined markup and styling, so treat the result as something to store or render rather than something to read. It carries no structured profile data at all: for follower counts, biography or bio links use get_instagram_basic_profile when the numeric id is known, or get_instagram_profile when only the handle is.",
        "parameters": [
          {
            "name": "handle",
            "in": "query",
            "required": true,
            "description": "Instagram handle",
            "schema": {
              "type": "string"
            },
            "example": "jane"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "html": "<!DOCTYPE html>\n<html lang=\"en\" id=\"facebook\" class=\"no_js\">\n<head><meta charset=\"utf-8....."
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramEmbedResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/post": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_post",
        "summary": "Post",
        "description": "Returns full metadata for one public post or reel identified by its URL, under data.xdt_shortcode_media: shortcode, is_video, video_url, video_duration, has_audio, display_url, dimensions, accessibility_caption, edge_media_to_caption for the caption text, and owner. Measured at about 197 KB. Setting download_media=true also mirrors the media to permanent storage and costs ten credits rather than one, so leave it off unless the files are needed. For the comment thread call get_instagram_post_comments with the same URL, and for the spoken words in a video call get_instagram_media_transcript.",
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "description": "Instagram post or reel URL",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "required": false,
            "description": "2 letter country code to set the proxy in",
            "schema": {
              "type": "string"
            },
            "example": "US"
          },
          {
            "name": "trim",
            "in": "query",
            "required": false,
            "description": "Set to true to get a trimmed response",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "download_media",
            "in": "query",
            "required": false,
            "description": "Set to true to download the video/images and get back permanent Supabase URLs. Costs 10 credits if media is found, 1 credit otherwise.",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "data": {
                    "xdt_shortcode_media": {
                      "id": "3657869083548472514",
                      "shortcode": "DLDXI0fylTC",
                      "__typename": "XDTGraphVideo",
                      "thumbnail_src": "https://scontent-iad3-1.cdninstagram.com/v/t51.2885-15/509601086_18503874985017172_8563682873145552176_n.jpg?stp=c0.469.1206.1206a_dst-jpg_e35_s640x640_sh0.08_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2QE_dnPQQ4wu9mDyMWXNHRAYOB8jcOQ_TxJE9VRReZUTgEUIXch0-khNb8H5VcwinCc&_nc_ohc=3V4jFXtydQsQ7kNvwHQ3Qp8&_nc_gid=aG9nPhpAiGuGUrkmWPrm6Q&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AfOjs7er3gUbnHBBBBsi_iqeOOKHtqNfw1AFLrOYfXTVDQ&oe=685A2AED&_nc_sid=d885a2",
                      "display_url": "https://scontent-iad3-1.cdninstagram.com/v/t51.2885-15/509601086_18503874985017172_8563682873145552176_n.jpg?stp=dst-jpg_e35_p1080x1080_sh0.08_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=104&_nc_oc=Q6cZ2QE_dnPQQ4wu9mDyMWXNHRAYOB8jcOQ_TxJE9VRReZUTgEUIXch0-khNb8H5VcwinCc&_nc_ohc=3V4jFXtydQsQ7kNvwHQ3Qp8&_nc_gid=aG9nPhpAiGuGUrkmWPrm6Q&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AfO_siFFGU1ggTsVsukqx_uxf69WPySR5tDouIn7xN604A&oe=685A2AED&_nc_sid=d885a2",
                      "video_url": "https://scontent-iad3-2.cdninstagram.com/o1/v/t16/f2/m86/AQPIiBLJBqG6YM9FzeabZmQkGTo94LpWkFoXGZJKZzy1TmBaeQneYOCvLLIE9oatPQwWEFvodXRGHTKQmyBOxJfo3UbjavdoyajuoZA.mp4?stp=dst-mp4&efg=eyJxZV9ncm91cHMiOiJbXCJpZ193ZWJfZGVsaXZlcnlfdnRzX290ZlwiXSIsInZlbmNvZGVfdGFnIjoidnRzX3ZvZF91cmxnZW4uY2xpcHMuYzIuNzIwLmJhc2VsaW5lIn0&_nc_cat=103&vs=1061284792789338_358197508&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC84NTQxMUYyMDM1NDdDN0E4ODc4N0FDRUIyMUUyRDQ4OV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HTk1hVGg1M1FKWnRBWG9FQUF3Y2JiN3gyZkVSYnFfRUFBQUYVAgLIARIAKAAYABsAFQAAJuzxz6DikvE%2FFQIoAkMzLBdAVSqfvnbItBgSZGFzaF9iYXNlbGluZV8xX3YxEQB1%2Fgdl5p0BAA%3D%3D&_nc_rid=b32127cffa&ccb=9-4&oh=00_AfMDvtWEdtNwN65iaFnkXOOEtR-W6ttellTLNCr3L_dovA&oe=68562DB4&_nc_sid=d885a2",
                      "has_audio": true,
                      "accessibility_caption": null,
                      "video_view_count": 0,
                      "video_play_count": 425901,
                      "product_type": "clips",
                      "video_duration": 84.666,
                      "clips_music_attribution_info": {
                        "artist_name": "jane",
                        "song_name": "Original audio",
                        "uses_original_audio": true,
                        "should_mute_audio": false,
                        "should_mute_audio_reason": "",
                        "audio_id": "3011705342342322"
                      },
                      "is_video": true,
                      "owner": {
                        "id": "21393171",
                        "username": "jane",
                        "is_verified": true,
                        "profile_pic_url": "https://scontent-iad3-2.cdninstagram.com/v/t51.2885-19/482782944_496357423346018_5818268903424754264_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2QE_dnPQQ4wu9mDyMWXNHRAYOB8jcOQ_TxJE9VRReZUTgEUIXch0-khNb8H5VcwinCc&_nc_ohc=UOwY1iuLY14Q7kNvwGxpnGC&_nc_gid=aG9nPhpAiGuGUrkmWPrm6Q&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AfMoD70mIn__G3PAJReI4bkQpSODkCurTmjbCMJiB2vxvA&oe=685A30E8&_nc_sid=d885a2",
                        "blocked_by_viewer": false,
                        "restricted_by_viewer": null,
                        "followed_by_viewer": false,
                        "full_name": "Jane Williamson",
                        "has_blocked_viewer": false,
                        "is_embeds_disabled": false,
                        "is_private": false,
                        "is_unpublished": false,
                        "requested_by_viewer": false,
                        "pass_tiering_recommendation": true,
                        "edge_owner_to_timeline_media": {
                          "count": 1599
                        },
                        "edge_followed_by": {
                          "count": 1565363
                        }
                      },
                      "edge_media_to_caption": {
                        "edges": [
                          {
                            "node": {
                              "created_at": "1750272153",
                              "text": "I think I like this goosey life🪿☺️🍃\n\n#crunchy #crunchymom #dayinthelife #holistic #nontoxic #homeschool #crunchymoms #momhumor #momlife #jane #janeinsane",
                              "id": "17894844171126505"
                            }
                          }
                        ]
                      },
                      "edge_media_to_parent_comment": {
                        "count": 299,
                        "page_info": {
                          "has_next_page": true,
                          "end_cursor": "{\"server_cursor\": \"QVFBbUdFZ185QlVSSVF4S1ZwTjV0SUZidGp6ZDNGeDV2eWQwbTY0bkw4U3pQLWVFaXU0MUI3UnRJMGJxOF96S3hYWVBHZmpyaFB5VlkwSV9aLUFNMTROeQ==\", \"is_server_cursor_inverse\": true}"
                        },
                        "edges": [
                          {
                            "node": {
                              "id": "18347526892092420",
                              "text": "HAHAHAAHAHAHHA gonna read your TESIS! 😂",
                              "created_at": 1750359820,
                              "did_report_as_spam": false,
                              "owner": {
                                "id": "6033455441",
                                "is_verified": false,
                                "profile_pic_url": "https://scontent-iad3-1.cdninstagram.com/v/t51.2885-19/483471395_1164389188513903_6044431802761779055_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2QE_dnPQQ4wu9mDyMWXNHRAYOB8jcOQ_TxJE9VRReZUTgEUIXch0-khNb8H5VcwinCc&_nc_ohc=QOCwy1KWd8QQ7kNvwHF1ucI&_nc_gid=aG9nPhpAiGuGUrkmWPrm6Q&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AfNWvGEpjWjHfQ-tkxIVoD62tUng8W2U3ohE43g2A1haFQ&oe=685A200D&_nc_sid=d885a2",
                                "username": "wellness_byflor"
                              },
                              "viewer_has_liked": false,
                              "edge_liked_by": {
                                "count": 0
                              },
                              "is_restricted_pending": false,
                              "edge_threaded_comments": {
                                "count": 0,
                                "page_info": {
                                  "has_next_page": false,
                                  "end_cursor": null
                                },
                                "edges": []
                              }
                            }
                          }
                        ]
                      },
                      "edge_media_preview_comment": {
                        "count": 299,
                        "edges": [
                          {
                            "node": {
                              "id": "18086391994676491",
                              "text": "Best one to date lol 😂",
                              "created_at": 1750359443,
                              "did_report_as_spam": false,
                              "owner": {
                                "id": "5944090666",
                                "is_verified": false,
                                "profile_pic_url": "https://scontent-iad3-2.cdninstagram.com/v/t51.2885-19/482803017_667846065679007_6441202725191295011_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2QE_dnPQQ4wu9mDyMWXNHRAYOB8jcOQ_TxJE9VRReZUTgEUIXch0-khNb8H5VcwinCc&_nc_ohc=nUG_gQrKtH0Q7kNvwFa2kyY&_nc_gid=aG9nPhpAiGuGUrkmWPrm6Q&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AfM93kEdG8m010pLpqUXaLPxV14fzT8W9WA2dNpoq_duUw&oe=685A4010&_nc_sid=d885a2",
                                "username": "homeswithgrantevans"
                              },
                              "viewer_has_liked": false,
                              "edge_liked_by": {
                                "count": 0
                              },
                              "is_restricted_pending": false
                            }
                          }
                        ]
                      },
                      "taken_at_timestamp": 1750272151,
                      "is_ad": false,
                      "edge_media_preview_like": {
                        "count": 22926,
                        "edges": []
                      },
                      "is_affiliate": false,
                      "is_paid_partnership": false,
                      "location": null
                    }
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramPostResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/post/comments": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_post_comments",
        "summary": "Post Comments",
        "description": "Returns the comments on a public post or reel by URL in an already-normalised shape: comments, each with id, text, comment_like_count, child_comment_count, created_at and a nested user, plus cursor to page. Measured at about 10 KB, one of the few small responses in this API. Only top-level comments are returned; child_comment_count reports how many replies a comment has but the replies themselves are not included, and there is no endpoint that expands them. For the post itself, its caption, view counts and video URL, call get_instagram_post with the same URL.",
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "description": "The URL of the post or reel to get comments from",
            "schema": {
              "type": "string"
            },
            "example": "https://www.instagram.com/reel/DOq6eV6iIgD"
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "description": "The cursor to get more comments. Get 'cursor' from previous response.",
            "schema": {
              "type": "string"
            },
            "example": "eyJjYWNoZWRfY29tbWVud..."
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "credits_remaining": 33929114,
                  "comments": [
                    {
                      "id": "18051843701642870",
                      "text": "\"...but who wants to know people who don't love animals anyway?\". ❤️",
                      "created_at": "2025-09-16T17:03:04.000Z",
                      "comment_like_count": 0,
                      "user": {
                        "is_verified": false,
                        "id": "46773599357",
                        "pk": "46773599357",
                        "is_unpublished": null,
                        "profile_pic_url": "https://scontent-dfw5-1.cdninstagram.com/v/t51.2885-19/542013919_18051324464559358_4060586438619554592_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2QEVOAPWq7DXE6cVfhoMQb0GTMvPo_vizELP9TUgQylvA5jBW1WSonDzvjeTQpAGJ3w&_nc_ohc=b__bzrMG6kYQ7kNvwGXM67R&_nc_gid=oDBffhoPbGLAq2tbCGpGKg&edm=AKp6CbIBAAAA&ccb=7-5&oh=00_AflThVwZ86n6DiACA5-zJCNFQZWBwHfaG6AXZclgea57BA&oe=695A3139&_nc_sid=d62176",
                        "username": "catherina_thijs",
                        "fbid_v2": "17841446780736699"
                      }
                    }
                  ],
                  "cursor": "AQHSpoi6HyDbzYRMzrD........."
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramCommentsResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/media/transcript": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.00376,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_media_transcript",
        "summary": "Media Transcript",
        "description": "Transcribes the speech in a public Instagram video or reel and returns transcripts, each with id, shortcode and the transcribed text. The target must be a video under two minutes long: a photo post returns 400 bad_request, so when the URL's type is unknown check is_video with get_instagram_post first. Measured at 13 seconds, the slowest call in this API, for about 1 KB back. For the caption the author wrote rather than the words spoken in the video, read edge_media_to_caption from get_instagram_post.",
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "description": "Instagram post or reel URL",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "transcripts": [
                    {
                      "id": "3597267389859272809",
                      "shortcode": "DHsD6HGqJhp",
                      "text": "Let's fry up the perfect bunzel. Beautiful.  Everybody, shh. The perfect bunzel. Let me show you my bunzel. When it comes down to bunzel, we make it the crispiest, get the crunch. Heaven."
                    }
                  ]
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramTranscriptsResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/reels/trending": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_reels_trending",
        "summary": "Trending Reels",
        "description": "Returns the reels Instagram publishes on its public instagram.com/reels page, in a normalised shape: reels, each with shortcode, url, caption, like_count, comment_count, video_url, image_url, media_type, taken_at and the owning user. Instagram serves a small batch at a time and successive batches overlap, so call repeatedly and de-duplicate on shortcode. Measured at 30 reels and about 411 KB, where play_count and ig_play_count came back null on every item, unlike get_instagram_reels_search which populates them. Takes no parameters and cannot be filtered; to search by topic use get_instagram_reels_search.",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "credits_remaining": 100,
                  "data": {
                    "reels": [
                      {
                        "id": "3659267353687104516",
                        "pk": "3659267353687104516",
                        "shortcode": "DYt13O8gLoE",
                        "url": "https://www.instagram.com/reel/DYt13O8gLoE/",
                        "caption": "Funny clip from today",
                        "taken_at": "2026-01-02T18:32:11.000Z",
                        "media_type": 2,
                        "product_type": "clips",
                        "video_url": "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4",
                        "video_versions": [
                          {
                            "type": 101,
                            "width": 720,
                            "height": 1280,
                            "url": "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4"
                          }
                        ],
                        "image_url": "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg",
                        "image_versions2": {
                          "candidates": [
                            {
                              "width": 720,
                              "height": 1280,
                              "url": "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg"
                            }
                          ]
                        },
                        "original_width": 720,
                        "original_height": 1280,
                        "has_audio": true,
                        "like_count": 12345,
                        "comment_count": 123,
                        "play_count": 456789,
                        "ig_play_count": 456789,
                        "clips_metadata": {},
                        "user": {
                          "id": "123456789",
                          "pk": "123456789",
                          "username": "creator",
                          "full_name": "Creator",
                          "profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/example.jpg",
                          "is_verified": true,
                          "is_private": false
                        }
                      }
                    ]
                  }
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramReelsResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/reels/search": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_reels_search",
        "summary": "Search Reels",
        "description": "Searches reels by keyword through Google rather than Instagram's login-gated search, returning reels with shortcode, url, caption, video_url, video_duration, video_play_count, video_view_count, like_count, comment_count, owner, location and taken_at, plus next_page. Because the index is Google's, coverage is what Google has indexed publicly, not everything on Instagram, and date_posted narrows to a relative window. Measured at about 87 KB and 8 seconds, with all four engagement counts populated. Use get_instagram_search_hashtag to search a specific hashtag, and get_instagram_reels_trending for what is popular right now with no query at all.",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "required": true,
            "description": "The keyword to search for",
            "schema": {
              "type": "string"
            },
            "example": "dogs"
          },
          {
            "name": "date_posted",
            "in": "query",
            "required": false,
            "description": "Optional Google-search date filter. Runtime confirmed with `last-hour`; omit this parameter if a provider search window is unavailable.",
            "schema": {
              "type": "string",
              "enum": [
                "last-hour",
                "last-day",
                "last-week",
                "last-month",
                "last-year"
              ]
            },
            "example": "last-hour"
          },
          {
            "name": "page",
            "in": "query",
            "required": false,
            "description": "The page number to return.",
            "schema": {
              "type": "number"
            },
            "example": 1
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "credits_remaining": 33929349,
                  "reels": [
                    {
                      "id": "3723045213787686915",
                      "__typename": "XDTGraphVideo",
                      "shortcode": "DOq6eV6iIgD",
                      "url": "https://www.instagram.com/reel/DOq6eV6iIgD/",
                      "caption": "Dogs are family 💙\n\nI met Rocco, a little rescue Chihuahua all the way from Mexico 🇲🇽🐾 \n\nHe’s looked after by a lovely lady who’s always had dogs, but when she lost her last one, she thought that was it, the loss is too painful to go through again. But babysitting Rocco gives her her “dog fix” and keeps her connected to the love only dogs can bring 🥰\n\nShe’s originally from Los Angeles, but now a New Yorker, and knows Central Park inside out from years of walking dogs there 🌳🐕 \n\nShe told me how dogs are family, and people who don’t love animals will never fully understand it, and I completely agree! ❤️\n\n#dogphotography #rescuedog #chihuahua #dogportrait #dogphotographer",
                      "thumbnail_src": "https://scontent-sjc3-1.cdninstagram.com/v/t51.2885-15/550186015_17890754136343371_4563383710172988045_n.jpg?stp=c0.280.720.720a_dst-jpg_e15_s640x640_tt6&_nc_ht=scontent-sjc3-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2QEgFUe8Hj_UR-Af4n8brIqO2O_yZfoRHnHjM_VSEqFgfOpJoZ-_uIv8BVvGuSnLWQw&_nc_ohc=d5Wmai9i7L0Q7kNvwH6u4n-&_nc_gid=rIrCBBTCedpkbi2BFdOeJA&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AfkaB2Nw4i5OiJscl0BtYIQRdenm5DyobWgTmjiq98BkcQ&oe=695A1764&_nc_sid=d885a2",
                      "display_url": "https://scontent-sjc3-1.cdninstagram.com/v/t51.2885-15/550186015_17890754136343371_4563383710172988045_n.jpg?stp=dst-jpg_e15_tt6&_nc_ht=scontent-sjc3-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2QEgFUe8Hj_UR-Af4n8brIqO2O_yZfoRHnHjM_VSEqFgfOpJoZ-_uIv8BVvGuSnLWQw&_nc_ohc=d5Wmai9i7L0Q7kNvwH6u4n-&_nc_gid=rIrCBBTCedpkbi2BFdOeJA&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_AflECyxYDTLWJ-OPnPag49aqgx6CniLKmOaUAGMGXrkDxg&oe=695A1764&_nc_sid=d885a2",
                      "video_url": "https://scontent-sjc3-1.cdninstagram.com/o1/v/t2/f2/m86/AQPtJA5EnMaKK-MNttf3RtYeQCVd-RvC7-juqeJiRkM3tKOkES_-1_ejsPDHgHGZ-xl4in8i3l38K12FlyUWKsieKzs2fGzo1GYOYJI.mp4?_nc_cat=105&_nc_sid=5e9851&_nc_ht=scontent-sjc3-1.cdninstagram.com&_nc_ohc=YBLRFw3fFXcQ7kNvwGKHSNS&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6Nzg4NjQ4MjQzNTUwNjIxLCJhc3NldF9hZ2VfZGF5cyI6MTA1LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6NzUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=8331fe48c9c9d742&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC85NjQ3MjM4QTg3QjMzMzVCNEVBNDI2NEUzRTIyRTNBRV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HRGFlcnlEbFRCTkhBbXdGQUk1d0lORGFpWEk3YnFfRUFBQUYVAgLIARIAKAAYABsCiAd1c2Vfb2lsATEScHJvZ3Jlc3NpdmVfcmVjaXBlATEVAAAmuubGpq_R5gIVAigCQzMsF0BS7MzMzMzNGBJkYXNoX2Jhc2VsaW5lXzFfdjERAHX-B2XmnQEA&_nc_gid=rIrCBBTCedpkbi2BFdOeJA&_nc_zt=28&oh=00_Afnoz52f0MquXCMwfTVoxg7ArrUBU0IM-BhI13EbDc8qKg&oe=695618AE",
                      "has_audio": false,
                      "accessibility_caption": null,
                      "video_view_count": 21808,
                      "video_play_count": 46018,
                      "product_type": "clips",
                      "video_duration": 75.7,
                      "clips_music_attribution_info": {
                        "artist_name": "Oliver Max",
                        "song_name": "Smiling Heart",
                        "uses_original_audio": false,
                        "should_mute_audio": false,
                        "should_mute_audio_reason": "",
                        "audio_id": "1711608879787237"
                      },
                      "is_video": true,
                      "owner": {
                        "id": "70127159370",
                        "username": "fetchmycamera_",
                        "is_verified": true,
                        "profile_pic_url": "https://scontent-sjc3-1.cdninstagram.com/v/t51.2885-19/464124732_886472936919742_2388131534569981752_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-sjc3-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2QEgFUe8Hj_UR-Af4n8brIqO2O_yZfoRHnHjM_VSEqFgfOpJoZ-_uIv8BVvGuSnLWQw&_nc_ohc=zUH1QNaBCjYQ7kNvwEvfJoG&_nc_gid=rIrCBBTCedpkbi2BFdOeJA&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Afl7bOnEEqOQh9YqpKjOfS9Nly8_GgqVf-UHM2PXwEnrRQ&oe=695A1C46&_nc_sid=d885a2",
                        "full_name": "Mark | Dog Photographer & Storyteller",
                        "is_private": false,
                        "is_unpublished": false,
                        "follower_count": 188406,
                        "post_count": 117
                      },
                      "taken_at": "2025-09-16T16:56:45.000Z",
                      "is_ad": false,
                      "like_count": 3487,
                      "is_affiliate": false,
                      "is_paid_partnership": false,
                      "location": {
                        "id": "110103980565013",
                        "has_public_page": true,
                        "name": "Central Park, New York City",
                        "slug": "central-park-new-york-city",
                        "address_json": "{\"street_address\": \"5th Avenue & 59th Street - Grand Army Plaza\", \"zip_code\": \"10019\", \"city_name\": \"New York, New York\", \"region_name\": \"\", \"country_code\": \"\", \"exact_city_match\": false, \"exact_region_match\": false, \"exact_country_match\": false}"
                      },
                      "comment_count": 90,
                      "comments": [
                        {
                          "id": "17987217557879174",
                          "text": "😍",
                          "owner": {
                            "id": "59201694781",
                            "is_verified": false,
                            "profile_pic_url": "https://scontent-sjc3-1.cdninstagram.com/v/t51.2885-19/487953757_1207254180975255_6791368254609466885_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby41ODkuYzIifQ&_nc_ht=scontent-sjc3-1.cdninstagram.com&_nc_cat=103&_nc_oc=Q6cZ2QEgFUe8Hj_UR-Af4n8brIqO2O_yZfoRHnHjM_VSEqFgfOpJoZ-_uIv8BVvGuSnLWQw&_nc_ohc=qE_Ww23SCnYQ7kNvwH_hlCD&_nc_gid=rIrCBBTCedpkbi2BFdOeJA&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Afn9DKpQeyNf-M17weq6PlGfa-TnjHbUWDOMSLsw-0Q3IQ&oe=695A2603&_nc_sid=d885a2",
                            "username": "bslattt_official"
                          },
                          "like_count": 0,
                          "created_at": "2025-11-14T17:34:59.000Z"
                        }
                      ]
                    }
                  ]
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramReelsResponse"
                }
              }
            }
          },
          "500": {
            "description": "Upstream search provider error for the requested query/date window.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AIsaSocialError"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/search/hashtag": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_search_hashtag",
        "summary": "Search Hashtag",
        "description": "Finds public posts carrying a hashtag through Google, returning hashtag, media_type, cursor and posts in the same normalised shape as get_instagram_reels_search: shortcode, url, caption, like_count, comment_count, video_play_count, video_view_count, owner, location and taken_at. The leading # is optional. Set media_type=reels to narrow to reels, or all for posts and reels together. Note that cursor here is the next Google results page number rather than an Instagram cursor. Measured at about 78 KB for ten posts. To search caption keywords rather than a hashtag, use get_instagram_reels_search.",
        "parameters": [
          {
            "name": "hashtag",
            "in": "query",
            "required": true,
            "description": "The hashtag to search for. Include or omit the #.",
            "schema": {
              "type": "string"
            },
            "example": "makeup"
          },
          {
            "name": "date_posted",
            "in": "query",
            "required": false,
            "description": "Only return Google-indexed posts found in this relative window.",
            "schema": {
              "type": "string",
              "enum": [
                "last-hour",
                "last-day",
                "last-week",
                "last-month",
                "last-year"
              ]
            },
            "example": "last-week"
          },
          {
            "name": "media_type",
            "in": "query",
            "required": false,
            "description": "Use all to search public posts and reels, or reels to only return reels. Defaults to all.",
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "reels"
              ]
            },
            "example": "all"
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "description": "The cursor returned by the previous response. In this version, it is the next Google results page number.",
            "schema": {
              "type": "string"
            },
            "example": "2"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "credits_remaining": 49997308058,
                  "hashtag": "funnydogs",
                  "media_type": "all",
                  "posts": [
                    {
                      "id": "3714950709444987377",
                      "__typename": "XDTGraphVideo",
                      "shortcode": "DOOJ_zSjcnx",
                      "url": "https://www.instagram.com/reel/DOOJ_zSjcnx/",
                      "caption": "Well we tried to be subtle…  #funnydogs #funny #whiteboxer #australianshepherd",
                      "thumbnail_src": "https://scontent-ord5-2.cdninstagram.com/v/t51.82787-15/542212527_18130644664455761_8262846918103190683_n.jpg?stp=c0.509.1312.1312a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gGAVcFN0K6MoOopK41K4dWjOeZZaT9xgOadaLiAbdnmQSVNlQgD_lz8yQLaXrtvYeY&_nc_ohc=eV6SPEh2O88Q7kNvwHcNeFx&_nc_gid=tAUZdiRnIdGjcNvGfTjMvg&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af6BLCF7O_laTkSuoqn5Ebg8ZWg57JkaXtBAb6nH0KapPg&oe=6A1D1BB2&_nc_sid=d885a2",
                      "display_url": "https://scontent-ord5-2.cdninstagram.com/v/t51.82787-15/542212527_18130644664455761_8262846918103190683_n.jpg?stp=dst-jpg_e35_p1080x1080_sh2.08_tt6&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_cat=105&_nc_oc=Q6cZ2gGAVcFN0K6MoOopK41K4dWjOeZZaT9xgOadaLiAbdnmQSVNlQgD_lz8yQLaXrtvYeY&_nc_ohc=eV6SPEh2O88Q7kNvwHcNeFx&_nc_gid=tAUZdiRnIdGjcNvGfTjMvg&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af6TdnB6cfe_BkRBRYP65isRGJfDrp2evUQY9O_ReUHv2g&oe=6A1D1BB2&_nc_sid=d885a2",
                      "video_url": "https://scontent-ord5-2.cdninstagram.com/o1/v/t2/f2/m86/AQNG_gCzevxl8xiNB2lVRlcV8c3o3r2ZyeLeWfaY4eaHdyRX3_Z1mty2jrHuH5Z66vTC5SXrhmpdG5re9MNyf1jCtWVyPKAWQFQ037o.mp4?_nc_cat=104&_nc_sid=5e9851&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_ohc=ByTiQjuOr9wQ7kNvwGpBh0x&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTEyMDQ3OTIyMDA0MTUwMSwiYXNzZXRfYWdlX2RheXMiOjI2NCwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjY1LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=638842146c84456b&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC80QTQ2OURBNUJBQTE1RjdFODZFRjQxRThCOUU1RTNBOV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYRmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC83NDQ4NjQwMTg0MjI1MjdfODI5Mjc2OTQ2ODc2ODI3MDk4OC5tcDQVAgLIARIAKAAYABsCiAd1c2Vfb2lsATEScHJvZ3Jlc3NpdmVfcmVjaXBlATEVAAAmupyc3rzE_QMVAigCQzMsF0BQbul41P30GBJkYXNoX2Jhc2VsaW5lXzFfdjERAHX-B2XmnQEA&_nc_gid=tAUZdiRnIdGjcNvGfTjMvg&_nc_ss=7a22e&_nc_zt=28&oh=00_Af6Z6PbM9b2RWG7EdCufc8MOp-pcmhJu3EMKtd_pzJaopw&oe=6A193955",
                      "has_audio": false,
                      "accessibility_caption": null,
                      "video_view_count": 148581,
                      "video_play_count": 593055,
                      "product_type": "clips",
                      "video_duration": 65.733,
                      "clips_music_attribution_info": {
                        "artist_name": "_layla_the_boxer",
                        "song_name": "Original audio",
                        "uses_original_audio": true,
                        "should_mute_audio": false,
                        "should_mute_audio_reason": "",
                        "audio_id": "1303301604923923"
                      },
                      "is_video": true,
                      "owner": {
                        "id": "13582495760",
                        "username": "_layla_the_boxer",
                        "is_verified": true,
                        "profile_pic_url": "https://scontent-ord5-3.cdninstagram.com/v/t51.2885-19/420493539_1460561894498614_4791883467164866946_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gGAVcFN0K6MoOopK41K4dWjOeZZaT9xgOadaLiAbdnmQSVNlQgD_lz8yQLaXrtvYeY&_nc_ohc=aeHo4Q_mApIQ7kNvwERao4Z&_nc_gid=tAUZdiRnIdGjcNvGfTjMvg&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af4Fxb_M04AcFcB7JVo3PYiMVir3WS0vIloaPKB0igyV_g&oe=6A1D1119&_nc_sid=d885a2",
                        "full_name": "Layla the Boxer",
                        "is_private": false,
                        "is_unpublished": false,
                        "follower_count": 1369176,
                        "post_count": 1184
                      },
                      "taken_at": "2025-09-05T12:51:42.000Z",
                      "is_ad": false,
                      "like_count": 35854,
                      "is_affiliate": false,
                      "is_paid_partnership": false,
                      "location": null,
                      "comment_count": 1263,
                      "comments": [
                        {
                          "id": "18099897668494530",
                          "text": "😂😅🤣😍❤️🥰",
                          "owner": {
                            "id": "70821489119",
                            "is_verified": false,
                            "profile_pic_url": "https://scontent-ord5-3.cdninstagram.com/v/t51.2885-19/466368394_545365701466258_2087161965910224562_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2gGAVcFN0K6MoOopK41K4dWjOeZZaT9xgOadaLiAbdnmQSVNlQgD_lz8yQLaXrtvYeY&_nc_ohc=JxQ38FoXdhsQ7kNvwH3PKC0&_nc_gid=tAUZdiRnIdGjcNvGfTjMvg&edm=ANTKIIoBAAAA&ccb=7-5&oh=00_Af5bZb_HVbD8jFTK8i271c6IoeUyGR3iiKL-YVd-tFY_Yw&oe=6A1D05C8&_nc_sid=d885a2",
                            "username": "jesshman66"
                          },
                          "like_count": 0,
                          "created_at": "2026-01-25T13:33:43.000Z"
                        }
                      ]
                    }
                  ],
                  "cursor": "2"
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramHashtagSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/search/profiles": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.00376,
            "p50": 0.012,
            "p95": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_search_profiles",
        "summary": "Search Profiles",
        "description": "Searches Google for public Instagram profiles matching a keyword or bio phrase and returns profiles with username, full_name, biography, follower_count, following_count, media_count, is_verified, is_private, category_name, external_url, bio_links, url, the numeric id, and matched_from, which records whether the hit came from a profile page or from a post. google_title and google_description carry the underlying search result. Measured at about 18 KB and 13 seconds. The numeric id feeds get_instagram_basic_profile directly. To search posts rather than people, use get_instagram_search_hashtag or get_instagram_reels_search.",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "required": true,
            "description": "Bio or caption keyword/phrase to search for.",
            "schema": {
              "type": "string"
            },
            "example": "fitness coach"
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "description": "The cursor returned by the previous response. In this version, it is the next Google results page number.",
            "schema": {
              "type": "string"
            },
            "example": "2"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "credits_remaining": 49997308061,
                  "query": "fitness coach",
                  "profiles": [
                    {
                      "id": "188767259",
                      "username": "charliejohnsonfitness",
                      "full_name": "Worlds #1 Fitness Business Coach",
                      "biography": "DM me “PAID” \nLearn how 1,000+ Fitness Coaches use my Paid Attention System™️ as their NEW way to acquire high ticket clients\n33 clients hit $100kpcm👇",
                      "bio_links": [
                        {
                          "title": "Install the Paid Attention System™️",
                          "lynx_url": "https://l.instagram.com/?u=https%3A%2F%2Fwww.7fss.com%2Fstep-1-copy%3Fel%3DIGBIOLINK%23open-popup&e=AUDL6mrGFNwwqQ5OS_ykY3196_aDgP3WevjzLFx8G7jkeMCdaQ34LYoLtaVthGp5x_sy5PqmCVr0QYah1cAfHJMPL2tvSClY",
                          "url": "https://www.7fss.com/step-1-copy?el=IGBIOLINK#open-popup",
                          "link_type": "external"
                        }
                      ],
                      "external_url": "https://www.7fss.com/step-1-copy?el=IGBIOLINK",
                      "is_private": false,
                      "is_verified": true,
                      "is_business_account": true,
                      "is_professional_account": true,
                      "category_name": "Coach",
                      "profile_pic_url": "https://instagram.fdet3-1.fna.fbcdn.net/v/t51.2885-19/444225908_1202724841095492_3262096613222025830_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=instagram.fdet3-1.fna.fbcdn.net&_nc_cat=100&_nc_oc=Q6cZ2gFTVWoQPCqNLj-erLzu1cFdO0-uazC-7j664y34QW50PvMRgi9toNMv94miQw1IPKU&_nc_ohc=5TYJtJtx0VQQ7kNvwGUcUOD&_nc_gid=jNVLQonLp3nF-24qe_urog&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_Af4AKr0x8tmEMoxUpNl7z-oM-KqiNxXQVavhCSJSzfJCjg&oe=6A1D2C23&_nc_sid=8b3546",
                      "follower_count": 503332,
                      "following_count": 6541,
                      "media_count": 8387,
                      "url": "https://www.instagram.com/charliejohnsonfitness/",
                      "matched_from": "profile",
                      "google_title": "Worlds #1 Fitness Business Coach (@charliejohnsonfitness) - Instagram",
                      "google_description": "His name is Peter Doyle. His business does millions every single month and he's about to close the biggest capital raise of his career. He could have called ..."
                    }
                  ],
                  "cursor": "2"
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramProfilesSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/instagram/song/reels": {
      "get": {
        "x-aisa-pricing": {
          "model": "dynamic",
          "currency": "USD",
          "basis": "provider_cost x 2",
          "nominal_usd": 0.012,
          "observed_usd": {
            "min": 0.012,
            "max": 0.012
          },
          "cost_drivers": [
            {
              "param": "records returned",
              "effect": "charge scales with number of records returned"
            }
          ],
          "cost_tier": "variable",
          "note": "nominal_usd is a static reference, NOT a guaranteed minimum; actual charge = provider_cost x multiplier and can be higher or lower"
        },
        "tags": [
          "Instagram API"
        ],
        "operationId": "get_instagram_song_reels",
        "summary": "Song Reels",
        "description": "Returns the reels that use one audio track, as raw Instagram media objects under reels, with cursor and has_more for paging. There are two confirmed ways to obtain audio_id: the number in an instagram.com/reels/audio/<id>/ URL, and clips_metadata.original_sound_info.audio_asset_id on any reel returned by get_instagram_user_reels. Measured at about 177 KB for five reels, in the same raw shape as get_instagram_user_reels rather than the normalised shape of the search endpoints. To find reels by keyword instead of by sound, use get_instagram_reels_search.",
        "parameters": [
          {
            "name": "audio_id",
            "in": "query",
            "required": true,
            "description": "The audio id from the Instagram audio page URL.",
            "schema": {
              "type": "string"
            },
            "example": "1392969992841787"
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "description": "Pagination cursor returned by Instagram from the previous response.",
            "schema": {
              "type": "string"
            },
            "example": "Gsbyq-aju4eF02y..."
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "example": {
                  "success": true,
                  "credits_remaining": 49996450280,
                  "reels": [
                    {
                      "gen_ai_chat_with_ai_cta_info": null,
                      "collaborator_edit_eligibility": false,
                      "number_of_qualities": 6,
                      "related_ads_pivots_media_info": "USER_NOT_IN_TEST_GROUP",
                      "is_artist_pick": false,
                      "translated_langs_for_autodub": [],
                      "subtype_name_for_REST__": "XDTClipsMedia",
                      "is_eligible_for_poe": false,
                      "original_lang_for_translations": "en",
                      "eligible_insights_entrypoints": "NONE",
                      "igbio_product": null,
                      "hidden_likes_string_variant": -1,
                      "is_social_ufi_disabled": false,
                      "boost_unavailable_reason": null,
                      "boost_unavailable_identifier": null,
                      "boost_unavailable_reason_v2": [],
                      "client_cache_key": "MzkxNDQ4MzYyNDQ0NjgzOTU0NQ==.3",
                      "can_reply": false,
                      "photo_of_you": false,
                      "media_attributions_data": [],
                      "can_view_more_preview_comments": false,
                      "mezql_token": "",
                      "has_tagged_users": false,
                      "is_eligible_content_for_post_roll_ad": false,
                      "is_cutout_sticker_allowed": false,
                      "is_photo_comments_composer_enabled_for_author": false,
                      "hide_view_all_comment_entrypoint": false,
                      "has_liked": false,
                      "is_organic_product_tagging_eligible": false,
                      "view_state_item_type": 128,
                      "video_sticker_locales": [],
                      "is_paid_partnership": false,
                      "is_in_profile_grid": false,
                      "is_tagged_media_shared_to_viewer_profile_grid": false,
                      "should_show_author_pog_for_tagged_media_shared_to_profile_grid": false,
                      "inventory_source": "recommended_clips_chaining_model",
                      "integrity_review_decision": "pending",
                      "has_delayed_metadata": false,
                      "filter_type": 0,
                      "deleted_reason": 0,
                      "device_timestamp": 1780862828857832,
                      "is_reshare_of_text_post_app_media_in_ig": false,
                      "timeline_pinned_user_ids": [],
                      "is_open_to_public_submission": false,
                      "profile_grid_control_enabled": false,
                      "can_see_insights_as_brand": false,
                      "media_reposter_bottomsheet_enabled": false,
                      "coauthor_producer_can_see_organic_insights": false,
                      "share_count_disabled": false,
                      "is_visual_reply_commenter_notice_enabled": true,
                      "should_request_ads": false,
                      "subscribe_cta_visible": false,
                      "sharing_friction_info": {
                        "bloks_app_url": null,
                        "sharing_friction_payload": null,
                        "should_have_sharing_friction": false
                      },
                      "media_overlay_info": null,
                      "fb_user_tags": {
                        "in": []
                      },
                      "coauthor_producers": [],
                      "cutout_sticker_info": [],
                      "invited_coauthor_producers": [],
                      "gen_ai_detection_method": {
                        "detection_method": "NONE"
                      },
                      "comment_inform_treatment": {
                        "should_have_inform_treatment": false,
                        "text": "",
                        "action_type": null,
                        "url": null
                      },
                      "creative_config": null,
                      "caption": {
                        "strong_id__": "18003972137927139",
                        "pk": "18003972137927139",
                        "bit_flags": 0,
                        "content_type": "comment",
                        "created_at": 1780863179,
                        "created_at_utc": 1780863179,
                        "did_report_as_spam": false,
                        "is_covered": false,
                        "is_ranked_comment": false,
                        "media_id": "3914483624446839545",
                        "private_reply_status": 0,
                        "share_enabled": false,
                        "status": "Active",
                        "text": "Thank you so much to the @rangers for having us out to throw the first pitch. Absolute bucket list item \n\n🎥 @derekhockemeyer \n\n#rangers #rockmusic #baseball #mlb",
                        "type": 1,
                        "user": {
                          "strong_id__": "50380429276",
                          "id": "50380429276",
                          "pk": 50380429276,
                          "pk_id": "50380429276",
                          "username": "the_moonrocks",
                          "full_name": "Dexter and The Moonrocks",
                          "is_private": false,
                          "is_verified": true,
                          "profile_pic_id": "3596544531479280878_50380429276",
                          "profile_pic_url": "https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/486451888_876116764599836_2484139502902255595_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDAwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gErZlYFtNgTJHTyDqaQXA7j57JH6I22iRoOkDAGIiYeRo10okFoVMUQF0K8EhLDpz0&_nc_ohc=3AKPMsLISg8Q7kNvwEqyLZS&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af9_QPU6gb7UXgbF-8oArHR3Sl88g02CcWe_rjkVHhRegg&oe=6A2D115C&_nc_sid=10d13b",
                          "fbid_v2": "17841450318307553",
                          "is_unpublished": false
                        },
                        "user_id": 50380429276
                      },
                      "music_metadata": null,
                      "meta_ai_suggested_prompts": [],
                      "user": {
                        "is_embeds_disabled": false,
                        "id": "50380429276",
                        "pk": 50380429276,
                        "pk_id": "50380429276",
                        "strong_id__": "50380429276",
                        "fbid_v2": "17841450318307553",
                        "profile_pic_id": "3596544531479280878_50380429276",
                        "profile_pic_url": "https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/486451888_876116764599836_2484139502902255595_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDAwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gErZlYFtNgTJHTyDqaQXA7j57JH6I22iRoOkDAGIiYeRo10okFoVMUQF0K8EhLDpz0&_nc_ohc=3AKPMsLISg8Q7kNvwEqyLZS&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af9_QPU6gb7UXgbF-8oArHR3Sl88g02CcWe_rjkVHhRegg&oe=6A2D115C&_nc_sid=10d13b",
                        "eligible_for_text_app_activation_badge": false,
                        "interop_messaging_user_fbid": "17851906964677277",
                        "username": "the_moonrocks",
                        "full_name": "Dexter and The Moonrocks",
                        "is_private": false,
                        "is_unpublished": false,
                        "is_verified": true,
                        "show_account_transparency_details": true,
                        "transparency_product_enabled": false,
                        "third_party_downloads_enabled": 1,
                        "feed_post_reshare_disabled": false,
                        "account_badges": [],
                        "account_type": 3,
                        "has_anonymous_profile_picture": false,
                        "fan_club_info": {
                          "autosave_to_exclusive_highlight": null,
                          "connected_member_count": null,
                          "fan_club_id": null,
                          "fan_club_name": null,
                          "fan_consideration_page_revamp_eligiblity": null,
                          "has_enough_subscribers_for_ssc": null,
                          "is_fan_club_gifting_eligible": null,
                          "is_fan_club_referral_eligible": null,
                          "subscriber_count": null,
                          "has_created_ssc": null,
                          "is_free_trial_eligible": null,
                          "largest_public_bc_id": null,
                          "should_show_playlists_in_profile_tab": null
                        }
                      },
                      "clips_metadata": {
                        "achievements_info": {
                          "num_earned_achievements": null,
                          "show_achievements": false
                        },
                        "additional_audio_info": {
                          "additional_audio_username": null,
                          "audio_reattribution_info": {
                            "should_allow_restore": false
                          }
                        },
                        "asset_recommendation_info": null,
                        "audio_ranking_info": {
                          "best_audio_cluster_id": "1392969992841787"
                        },
                        "audio_type": "licensed_music",
                        "branded_content_tag_info": {
                          "can_add_tag": false
                        },
                        "clips_creation_entry_point": "feed",
                        "content_appreciation_info": {
                          "enabled": true,
                          "entry_point_container": {
                            "comment": {
                              "action_type": "gifting"
                            },
                            "overflow": null,
                            "pill": {
                              "action_type": "gifting",
                              "priority": 1
                            }
                          }
                        },
                        "contextual_highlight_info": null,
                        "cutout_sticker_info": [],
                        "disable_use_in_clips_client_cache": false,
                        "featured_label": null,
                        "is_fan_club_promo_video": null,
                        "is_public_chat_welcome_video": false,
                        "is_shared_to_fb": false,
                        "mashup_info": {
                          "can_toggle_mashups_allowed": false,
                          "formatted_mashups_count": null,
                          "has_been_mashed_up": false,
                          "has_nonmimicable_additional_audio": false,
                          "is_creator_requesting_mashup": false,
                          "is_light_weight_check": true,
                          "is_pivot_page_available": false,
                          "is_light_weight_reuse_allowed_check": false,
                          "is_reuse_allowed": false,
                          "mashup_type": null,
                          "mashups_allowed": false,
                          "non_privacy_filtered_mashups_media_count": 0,
                          "original_media": null,
                          "privacy_filtered_mashups_media_count": null
                        },
                        "music_canonical_id": "18455463055100927",
                        "music_info": {
                          "music_asset_info": {
                            "allows_saving": false,
                            "artist_id": "318791467948898",
                            "audio_asset_id": "1655474642367036",
                            "audio_cluster_id": "1392969992841787",
                            "cover_artwork_thumbnail_uri": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/650332792_71060841314503_1416809917085791775_n.jpg?stp=dst-jpg_s168x128_tt6&_nc_cat=1&ccb=1-7&_nc_sid=2f2557&_nc_ohc=nPTxUb7rZPUQ7kNvwGEs4zR&_nc_oc=AdrmbkQxsSMO4Rx1aiI5cZYpc6B3nD2bPqqeRveKVB-9NP2astJfuhYkSTdqS-9UqEE&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7a20f&oh=00_Af_VBrgk1I7krwXYJ1QGlcUcctWs9p3-6cPUOmnlXjHhCQ&oe=6A2CF4CE",
                            "cover_artwork_uri": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/650332792_71060841314503_1416809917085791775_n.jpg?stp=dst-jpg_s261x260_tt6&_nc_cat=1&ccb=1-7&_nc_sid=2f2557&_nc_ohc=nPTxUb7rZPUQ7kNvwGEs4zR&_nc_oc=AdrmbkQxsSMO4Rx1aiI5cZYpc6B3nD2bPqqeRveKVB-9NP2astJfuhYkSTdqS-9UqEE&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7a20f&oh=00_Af9u_cA6sILr-aFzE0_Ko4cdGK-WT8leUFtCRDWxDH-8rw&oe=6A2CF4CE",
                            "dark_message": null,
                            "dash_manifest": null,
                            "display_artist": "Dexter and The Moonrocks",
                            "duration_in_ms": 217897,
                            "fast_start_progressive_download_url": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m69/AQNlty8t4cP3Rq5yxfHtP_PoPO2pxMe6gh7PD8ha85O3RN4Nj-nQHLnRyUZmr2Aqi9lazeXNN_jutk3-vbuZPaj5.mp4?strext=1&_nc_cat=105&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=0ZYQDpcAGukQ7kNvwG99Idh&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuMC5wcm9ncmVzc2l2ZV9hdWRpb19hYWNwXzQ4X2ZyYWdfMl9hdWRpbyIsInhwdl9hc3NldF9pZCI6OTY5NzMzOTU1NDcwOTAzLCJhc3NldF9hZ2VfZGF5cyI6NDcsInZpX3VzZWNhc2VfaWQiOjEwNTY4LCJkdXJhdGlvbl9zIjoyMTcsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_ad=z-m&_nc_cid=0&_nc_zt=28&_nc_ss=7a20f&oh=00_Af-taeSVWSjiUVS0Yn3LbZMCfyh3gB0SlRx7cXsPKv2U2g&oe=6A2CE3D5",
                            "has_lyrics": false,
                            "highlight_start_times_in_ms": [
                              59000
                            ],
                            "id": "1655474642367036",
                            "ig_username": "the_moonrocks",
                            "is_eligible_for_audio_effects": true,
                            "is_explicit": false,
                            "progressive_download_url": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m69/AQNlty8t4cP3Rq5yxfHtP_PoPO2pxMe6gh7PD8ha85O3RN4Nj-nQHLnRyUZmr2Aqi9lazeXNN_jutk3-vbuZPaj5.mp4?strext=1&_nc_cat=105&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=0ZYQDpcAGukQ7kNvwG99Idh&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuMC5wcm9ncmVzc2l2ZV9hdWRpb19hYWNwXzQ4X2ZyYWdfMl9hdWRpbyIsInhwdl9hc3NldF9pZCI6OTY5NzMzOTU1NDcwOTAzLCJhc3NldF9hZ2VfZGF5cyI6NDcsInZpX3VzZWNhc2VfaWQiOjEwNTY4LCJkdXJhdGlvbl9zIjoyMTcsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_ad=z-m&_nc_cid=0&_nc_zt=28&_nc_ss=7a20f&oh=00_Af-taeSVWSjiUVS0Yn3LbZMCfyh3gB0SlRx7cXsPKv2U2g&oe=6A2CE3D5",
                            "reactive_audio_download_url": null,
                            "sanitized_title": null,
                            "subtitle": "",
                            "title": "Freakin’ Out",
                            "spotify_track_metadata": null,
                            "lyrics": null,
                            "song_monetization_info": null,
                            "licensed_music_subtype": "DEFAULT",
                            "is_eligible_for_vinyl_sticker": false,
                            "web_30s_preview_download_url": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m69/AQNJXvbeaJen3t4kfNe5DHW1PGPqDEzS7O3GuXnWuuGTDobzQc1cfTLeb8362d2F34mq2GBbvFZHzX6imv-Zxtj8.mp4?strext=1&_nc_cat=111&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=-qwRe0jKEBkQ7kNvwGkqE67&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuMC5wcm9ncmVzc2l2ZV9hdWRpb19hYWNwXzQ4X2ZyYWdfMl9hdWRpbyIsInhwdl9hc3NldF9pZCI6OTY5NzMzOTU1NDcwOTAzLCJhc3NldF9hZ2VfZGF5cyI6NDcsInZpX3VzZWNhc2VfaWQiOjEwNTY4LCJkdXJhdGlvbl9zIjoyMTcsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_ss=7a20f&_nc_ad=z-m&_nc_cid=0&_nc_zt=28&oh=00_Af8Uh5Atfr_g51m4GsSV7QmVvq0uRP1IQ1OGLfbmdPsUJg&oe=6A2D12DB"
                          },
                          "music_consumption_info": {
                            "allow_media_creation_with_music": false,
                            "audio_asset_start_time_in_ms": 155500,
                            "derived_content_start_time_in_composition_in_ms": null,
                            "display_labels": null,
                            "audio_filter_infos": [],
                            "audio_muting_info": {
                              "allow_audio_editing": false,
                              "mute_audio": false,
                              "mute_reason_str": "",
                              "show_muted_audio_toast": false
                            },
                            "contains_lyrics": null,
                            "derived_content_id": null,
                            "ig_artist": {
                              "strong_id__": "50380429276",
                              "id": "50380429276",
                              "full_name": "Dexter and The Moonrocks",
                              "is_private": false,
                              "is_verified": true,
                              "pk": 50380429276,
                              "pk_id": "50380429276",
                              "profile_pic_id": "3596544531479280878_50380429276",
                              "profile_pic_url": "https://scontent-bos5-1.cdninstagram.com/v/t51.2885-19/486451888_876116764599836_2484139502902255595_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDAwLmMyIn0&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gErZlYFtNgTJHTyDqaQXA7j57JH6I22iRoOkDAGIiYeRo10okFoVMUQF0K8EhLDpz0&_nc_ohc=3AKPMsLISg8Q7kNvwEqyLZS&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af9_QPU6gb7UXgbF-8oArHR3Sl88g02CcWe_rjkVHhRegg&oe=6A2D115C&_nc_sid=10d13b",
                              "username": "the_moonrocks"
                            },
                            "is_bookmarked": false,
                            "is_trending_in_clips": true,
                            "overlap_duration_in_ms": 30000,
                            "placeholder_profile_pic_url": "https://scontent-bos5-1.cdninstagram.com/v/t51.12442-15/43985629_311105916145351_58064759811405776_n.jpg?_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_cat=107&_nc_oc=Q6cZ2gErZlYFtNgTJHTyDqaQXA7j57JH6I22iRoOkDAGIiYeRo10okFoVMUQF0K8EhLDpz0&_nc_ohc=SlIu03LaJRcQ7kNvwEmBEgx&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&edm=APs17CUAAAAA&ccb=7-5&oh=00_Af-tDtQphNDB6gjPndM-HI6TrVRjd1LZ6mJl1F4ctLr50g&oe=6A2D013D&_nc_sid=10d13b",
                            "should_allow_music_editing": false,
                            "should_mute_audio": false,
                            "should_mute_audio_reason": "",
                            "should_render_soundwave": false,
                            "trend_rank": null,
                            "previous_trend_rank": null
                          }
                        },
                        "nux_info": null,
                        "original_sound_info": null,
                        "originality_info": null,
                        "professional_clips_upsell_type": 0,
                        "show_achievements": false,
                        "reels_on_the_rise_info": null,
                        "reusable_text_attribute_string": null,
                        "reusable_text_info": null,
                        "shopping_info": null,
                        "template_info": null,
                        "viewer_interaction_settings": null
                      },
                      "id": "3914483624446839545_50380429276",
                      "strong_id__": "3914483624446839545_50380429276",
                      "pk": "3914483624446839545",
                      "fbid": "18003971210927139",
                      "media_type": 2,
                      "like_and_view_counts_disabled": false,
                      "code": "DZTCh3aPMr5",
                      "taken_at": 1780862943,
                      "product_type": "clips",
                      "caption_is_edited": true,
                      "can_viewer_reshare": true,
                      "can_viewer_save": true,
                      "comment_count": 121,
                      "are_remixes_crosspostable": true,
                      "video_versions": [
                        {
                          "url": "https://scontent-bos5-1.cdninstagram.com/o1/v/t2/f2/m86/AQOGLJxmYlSItzvuJWTmTE6GeF4lsAdDGFMbQ0Twjb94gD4vUyObNmSHG6bml937oZnJrLKX-9ByZ5DHuzCAVt11ZH8YBfJC0JWfXHs.mp4?_nc_cat=108&_nc_sid=5e9851&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_ohc=VtHMjdRHADsQ7kNvwF8NAld&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6OTM3MjMwOTM5MzU5ODY2LCJhc3NldF9hZ2VfZGF5cyI6MSwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjMwLCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=d0fb3e3e71a6f5c9&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9ENTQzODc1Q0I5NTU4MzZGMThDRkM1Qjg0NzI0OUZBMl92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0FENDQzRUM2NEJDNzcyQzY5NDE0NEM3OEFBNEVFMzk5X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACb0qbTTgpqqAxUCKAJDMywXQD71P3ztkWgYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7e289&_nc_zt=28&oh=00_Af86p9gyqJtDsQCzujuJCr6KuJVQjAxSRBUO1p35jieb_A&oe=6A291B95",
                          "height": 1280,
                          "width": 720,
                          "type": 101,
                          "id": "2075839049633029v",
                          "fallback": null,
                          "url_expiration_timestamp_us": null,
                          "bandwidth": 874348
                        }
                      ],
                      "image_versions2": {
                        "candidates": [
                          {
                            "estimated_scans_sizes": [],
                            "height": 1136,
                            "scans_profile": null,
                            "url": "https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/719150226_27489725720657752_5945269205704640767_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=103&ig_cache_key=MzkxNDQ4MzYyNDQ0NjgzOTU0NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fbmZyYW1lX2NvdmVyX2ZyYW1lLkMzIn0%3D&_nc_ohc=YsjbeqoIlyIQ7kNvwG4yguV&_nc_oc=AdqP5h5UJ6Kk9KASXyBG0uFMcfSgn6jN1fZAbONRrv2xm_XauNoZ8t2eS8N1LCx8D8c&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7e289&oh=00_Af-7yvBgX7dgv9Hr8a_e4w4m-6baxzL6O9vAR4g7FCB51Q&oe=6A2CEEC4",
                            "width": 640
                          }
                        ],
                        "additional_candidates": {
                          "first_frame": {
                            "estimated_scans_sizes": [],
                            "height": 1136,
                            "scans_profile": null,
                            "url": "https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/720049395_2200373580753187_8434766665708624590_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=-k4KWqs4qJUQ7kNvwHHtR92&_nc_oc=AdodPhI3iMDbI-P3JXu3JXLpyqeS7wEERLo8aAB0XMO7D6v-DlIPj2VGlwpYBlOhv4U&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7e289&oh=00_Af-Bol1OQ2bSlFr5Ev8aJ6vZVHQQKwI4mJhtY2i41uYxKQ&oe=6A2D02FC",
                            "width": 640
                          },
                          "igtv_first_frame": {
                            "estimated_scans_sizes": [],
                            "height": 1136,
                            "scans_profile": null,
                            "url": "https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/720049395_2200373580753187_8434766665708624590_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkNMSVBTLnhwaWRzLjY0MC5zZHIudmlkZW9fYWRkaXRpb25hbF9jb3Zlcl9mcmFtZS5DMyJ9&_nc_ohc=-k4KWqs4qJUQ7kNvwHHtR92&_nc_oc=AdodPhI3iMDbI-P3JXu3JXLpyqeS7wEERLo8aAB0XMO7D6v-DlIPj2VGlwpYBlOhv4U&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7e289&oh=00_Af-Bol1OQ2bSlFr5Ev8aJ6vZVHQQKwI4mJhtY2i41uYxKQ&oe=6A2D02FC",
                            "width": 640
                          },
                          "smart_frame": null
                        },
                        "scrubber_spritesheet_info_candidates": {
                          "default": {
                            "sprite_urls": [
                              "https://scontent-bos5-1.cdninstagram.com/v/t51.71878-15/719939421_982614911077420_7014871733430920682_n.jpg?_nc_cat=111&ccb=7-5&_nc_sid=efdbef&_nc_ohc=BnmNS3_UWBMQ7kNvwGsvBNv&_nc_oc=AdolU3DvhiwbPBNGZ3E9go6Qpqg4YEAW_VmwVwNi5_r95-mdjFXCmaxugz181YIO-LA&_nc_zt=23&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=Cb947IFjRDhbeOoUvuQPcg&_nc_ss=7e289&oh=00_Af9E7tePOa73YroEspTO_PwuUO39y5nonHLkVn3bOd5qdg&oe=6A2CFE9D"
                            ],
                            "file_size_kb": 441,
                            "max_thumbnails_per_sprite": 105,
                            "rendered_width": 96,
                            "sprite_height": 1232,
                            "sprite_width": 1500,
                            "thumbnail_duration": 0.2948380952381,
                            "thumbnail_height": 176,
                            "thumbnail_width": 100,
                            "thumbnails_per_row": 15,
                            "total_thumbnail_num_per_sprite": 105,
                            "video_length": 30.958
                          }
                        },
                        "smart_thumbnail_enabled": null
                      },
                      "has_audio": true,
                      "like_count": 20308,
                      "locations": [],
                      "is_dash_eligible": 1,
                      "is_unified_video": false,
                      "enable_media_notes_production": false,
                      "play_count": 293700,
                      "fb_play_count": 58317,
                      "ig_play_count": 235383,
                      "is_third_party_downloads_eligible": true,
                      "original_width": 1080,
                      "original_height": 1920,
                      "is_reuse_allowed": false,
                      "has_shared_to_fb": 0,
                      "has_privately_liked": false,
                      "ig_media_sharing_disabled": false,
                      "organic_tracking_token": "eyJ2ZXJzaW9uIjo2LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiQXc4U3NPanhycVJzc2ZzQkxXVTh1SkQzOTE0NDgzNjI0NDQ2ODM5NTQ1Iiwic2VydmVyX3Rva2VuIjoiMTc4MDk1MTYwMjQ4MnwzOTE0NDgzNjI0NDQ2ODM5NTQ1fDUwMzgwNDI5Mjc2fGEwOWFhNDBmMTY0YzMxNGI4NmYxNWJjMzI0NjM2MjA0ZDRlNTdjZTFkMDYwZTAzN2E4YTQ4NmRiZTJiNzk3NzQifSwic2lnbmF0dXJlIjoiIn0=",
                      "has_views_fetching": true,
                      "video_duration": 30.973,
                      "is_post_live_clips_media": false,
                      "is_quiet_post": false,
                      "is_comments_gif_composer_enabled": false,
                      "clips_tab_pinned_user_ids": []
                    }
                  ],
                  "cursor": "Gsbyq....",
                  "has_more": true
                },
                "schema": {
                  "$ref": "#/components/schemas/InstagramReelsResponse"
                }
              }
            }
          }
        }
      }
    }
  }
}
