> ## Documentation Index
> Fetch the complete documentation index at: https://docs.creatordb.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Content Details

> Retrieve the most recent Instagram image posts and reels of a specific creator, including publish time, post description, and engagement metrics. This endpoint enables users to fetch the latest content details for visual and textual analysis or further content-based operations.<br /><br />Optionally pass `fields` in the request body to limit how many items each content-detail array returns. Each item returned is billed individually, capped at the full-bundle price. Fractional calls must be enabled on your API key. Otherwise, a request that includes `fields` returns a `400` error (`FractionalCallsNotEnabled`). Per-item costs are not published yet. For how fractional calls work, see [Fractional Calls](/api-v3/fractional-calls).



## OpenAPI

````yaml /api-v3/api-v3.yaml post /instagram/content-detail
openapi: 3.1.0
info:
  version: 1.0.0
  title: CreatorDB Headless API V3
  description: '# CreatorDB Headless API V3'
  contact:
    name: CreatorDB
    url: https://www.creatordb.app
    email: support@creatordb.app
  license:
    url: http://www.apache.org/licenses/LICENSE-2.0.html
    name: Apache 2.0
servers:
  - url: https://apiv3.creatordb.app
    description: Production Environment (CreatorDB Headless API V3)
security:
  - ApiKeyAuth: []
tags:
  - name: Brand
    description: Brand analysis endpoints including sponsor search and brand reports.
  - name: Facebook
    description: Facebook creator data endpoints with metrics and search capabilities.
  - name: General Operations
    description: >-
      General-purpose endpoints such as API status, content retrieval, and
      cross-platform operations.
  - name: Instagram
    description: >-
      Instagram creator data endpoints with metrics and advanced search
      capabilities.
  - name: Niches
    description: >-
      Niche-related endpoints for content category analysis and related
      searches.
  - name: Threads
    description: Threads creator data endpoints with basic metrics and historical data.
  - name: TikTok
    description: >-
      TikTok creator data endpoints with metrics and advanced search
      functionality.
  - name: Topic
    description: Topic-based analysis and reporting endpoints for content categorization.
  - name: YouTube
    description: >-
      YouTube creator data endpoints including basic metrics, historical data,
      and detailed analytics.
paths:
  /instagram/content-detail:
    post:
      tags:
        - Instagram
      summary: Get Content Details
      description: >-
        Retrieve the most recent Instagram image posts and reels of a specific
        creator, including publish time, post description, and engagement
        metrics. This endpoint enables users to fetch the latest content details
        for visual and textual analysis or further content-based operations.<br
        /><br />Optionally pass `fields` in the request body to limit how many
        items each content-detail array returns. Each item returned is billed
        individually, capped at the full-bundle price. Fractional calls must be
        enabled on your API key. Otherwise, a request that includes `fields`
        returns a `400` error (`FractionalCallsNotEnabled`). Per-item costs are
        not published yet. For how fractional calls work, see [Fractional
        Calls](/api-v3/fractional-calls).
      operationId: getInstagramContentDetail
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - uniqueId
              properties:
                uniqueId:
                  type: string
                  description: >-
                    Instagram account ID. Accepts `instagram` or `@instagram`
                    format (@ is stripped automatically).
                  pattern: ^@?[a-zA-Z0-9._]+$
                  minLength: 1
                  maxLength: 31
                  examples:
                    - instagram
                fields:
                  type: object
                  description: >-
                    Map each content array to the number of items to return.
                    Omit or pass an empty object to return all items at the
                    full-bundle price. Per-item costs are not published yet.
                  properties:
                    recentImages:
                      type: integer
                      description: Number of recent image posts to return.
                      examples:
                        - 5
                    recentReels:
                      type: integer
                      description: Number of recent reels to return.
                      examples:
                        - 5
      responses:
        '200':
          description: Instagram content details returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    description: >-
                      Retrieved Instagram content details of a specified
                      creator.
                    properties:
                      recentImages:
                        type: array
                        description: Data of Instagram image posts.
                        items:
                          type: object
                          description: A recent Instagram image post.
                          properties:
                            publishTime:
                              type: integer
                              description: >-
                                Publish time, represented as a Unix timestamp in
                                milliseconds.
                              examples:
                                - 1752392905000
                            contentId:
                              type: string
                              description: >-
                                The unique identifier. Represented as follows:
                                `https://www.instagram.com/p/{imageId}`
                              examples:
                                - DMCkc5CyZdf
                            isSponsored:
                              type: boolean
                              description: '`true` if sponsored.'
                              examples:
                                - true
                            description:
                              type: string
                              description: >-
                                The post caption, including emojis and line
                                breaks.
                              examples:
                                - |-
                                  突然覺得這輩子一定要好好賺錢
                                  以後都搭商務艙😭😭😭
                            coverImageUrl:
                              type: string
                              description: >-
                                The URL of the first image shown in the
                                Instagram image post.
                              examples:
                                - >-
                                  https://www.instagram.com/p/DMCkc5CyZdf/media/?size=l
                            carouselImageUrls:
                              type: array
                              description: URLs of images in the Instagram post.
                              examples:
                                - - >-
                                    https://instagram.ftpe7-2.fna.fbcdn.net/v/GfDr0Q&oe=68A5CBD8&_nc_sid=7a9f4b
                                  - >-
                                    https://instagram.ftpe7-2.fna.fbcdn.net/v/ttjknzBbXhk2y8g9
                              items:
                                type: string
                            igGeoTaggedLocation:
                              type:
                                - object
                                - 'null'
                              description: Tagged location.
                              properties:
                                lat:
                                  type: number
                                  description: Latitude of the geo-tagged location.
                                  examples:
                                    - 25.033964
                                lng:
                                  type: number
                                  description: Longitude of the geo-tagged location.
                                  examples:
                                    - 121.564468
                                name:
                                  type: string
                                  description: Name of the geo-tagged location.
                                  examples:
                                    - Taipei 101
                              required:
                                - lat
                                - lng
                                - name
                            likes:
                              type: integer
                              description: Number of likes.
                              examples:
                                - 15840
                            comments:
                              type: integer
                              description: Number of comments.
                              examples:
                                - 121
                            engagementRate:
                              type: number
                              description: >-
                                Engagement rate, rounded to 4th decimal place.
                                <br /> - *Engagement Rate &#61; (Likes +
                                Comments) / Followers*
                              examples:
                                - 0.1201
                            hashtags:
                              type: array
                              description: Keywords used in the post description.
                              examples:
                                - - '#激瘦挖腰連身泳衣'
                              items:
                                type: string
                            taggedCreators:
                              type: array
                              description: Tagged creators.
                              examples:
                                - - lalalalisa_m
                              items:
                                type: string
                          required:
                            - publishTime
                            - contentId
                            - isSponsored
                            - description
                            - coverImageUrl
                            - carouselImageUrls
                            - igGeoTaggedLocation
                            - likes
                            - comments
                            - engagementRate
                            - hashtags
                            - taggedCreators
                      recentReels:
                        type: array
                        description: Data of recent Instagram reels.
                        items:
                          type: object
                          description: A recent Instagram reel.
                          properties:
                            publishTime:
                              type: integer
                              description: >-
                                Publish time, represented as a Unix timestamp in
                                milliseconds.
                              examples:
                                - 1752902842000
                            contentId:
                              type: string
                              description: >-
                                The unique identifier. Represented as:
                                `https://www.instagram.com/reel/{reelId}`
                              examples:
                                - DMRw6T2St3ui
                            isSponsored:
                              type: boolean
                              description: '`true` if sponsored.'
                              examples:
                                - false
                            description:
                              type: string
                              description: >-
                                The reel caption, including emojis and line
                                breaks.
                              examples:
                                - 史上最優惠：買一件內衣 就送一件面膜內褲🎉
                            coverImageUrl:
                              type: string
                              description: The cover image URL.
                              examples:
                                - >-
                                  https://www.instagram.com/p/DMCkc5CyZdf/media/?size=l
                            igGeoTaggedLocation:
                              type:
                                - object
                                - 'null'
                              description: Tagged location.
                              properties:
                                lat:
                                  type: number
                                  description: Latitude of the geo-tagged location.
                                  examples:
                                    - 25.033964
                                lng:
                                  type: number
                                  description: Longitude of the geo-tagged location.
                                  examples:
                                    - 121.564468
                                name:
                                  type: string
                                  description: Name of the geo-tagged location.
                                  examples:
                                    - Taipei 101
                              required:
                                - lat
                                - lng
                                - name
                            likes:
                              type: integer
                              description: Number of likes.
                              examples:
                                - 15840
                            comments:
                              type: integer
                              description: Number of comments.
                              examples:
                                - 121
                            views:
                              type: integer
                              description: Number of views.
                              examples:
                                - 3469
                            engagementRate:
                              type: number
                              description: >-
                                Engagement rate, rounded to 4th decimal place.
                                <br /> - *Engagement Rate &#61; (Likes +
                                Comments) / Followers*
                              examples:
                                - 0.1201
                            hashtags:
                              type: array
                              description: Keywords in the reel description.
                              examples:
                                - - '#激瘦挖腰連身泳衣'
                              items:
                                type: string
                            taggedCreators:
                              type: array
                              description: Tagged creators.
                              examples:
                                - - lalalalisa_m
                              items:
                                type: string
                          required:
                            - publishTime
                            - contentId
                            - isSponsored
                            - description
                            - coverImageUrl
                            - igGeoTaggedLocation
                            - likes
                            - comments
                            - views
                            - engagementRate
                            - hashtags
                            - taggedCreators
                    required:
                      - recentImages
                      - recentReels
                  creditsUsed:
                    type: integer
                    description: Number of API credits consumed by this request.
                    examples:
                      - 1
                  creditsAvailable:
                    type: integer
                    description: Number of API credits remaining.
                    examples:
                      - -1
                  traceId:
                    type: string
                    description: Unique trace ID for each request.
                    examples:
                      - f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0
                  timestamp:
                    type: integer
                    description: >-
                      Time the response was generated, represented as a Unix
                      timestamp in milliseconds.
                    examples:
                      - 1750732453635
                  errorCode:
                    type: string
                    description: >-
                      Error code returned if the request fails. Empty if the
                      request is successful.
                    examples:
                      - ''
                  errorDescription:
                    type: string
                    description: >-
                      Description of the error. Empty if the request is
                      successful.
                    examples:
                      - ''
                  success:
                    type: boolean
                    description: '`true` if the request is successful.'
                    examples:
                      - true
                required:
                  - data
                  - traceId
                  - timestamp
                  - errorCode
                  - errorDescription
                  - success
                  - creditsUsed
                  - creditsAvailable
              examples:
                default:
                  value:
                    data:
                      recentImages:
                        - publishTime: 1767901822000
                          contentId: DTQxXIujVbM
                          isSponsored: false
                          description: >-
                            This fight isn’t over. We keep working and we will
                            rise together!
                          coverImageUrl: >-
                            https://www.instagram.com/p/DTQxXIujVbM/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://www.instagram.com/p/DTQxXIujVbM/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 801639
                          comments: 9269
                          engagementRate: 0.0012
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1767707453000
                          contentId: DTK-ojYCMS4
                          isSponsored: false
                          description: Focused and ready 🦾
                          coverImageUrl: >-
                            https://www.instagram.com/p/DTK-ojYCMS4/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/610529583_18671576230056421_2230082919574148745_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=MzgwNDEyODI4NTYxMzg4OTE5NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMS5zZHIuQzMifQ%3D%3D&_nc_ohc=bXT31AbALb8Q7kNvwFGvBZB&_nc_oc=AdmDyEKAXNBiocIcvqOpM5UK3Q8gLqpOgywNptFgA-9do76FFQXuQGQfWglPRBqZaqoy7gDwSz-FBR4CmwxhqkQ_&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpMoD070bxVGn4GmBBesDs3_L55Q1KjSkXA7WCvSBinwA&oe=696640B0
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/610797258_18671576218056421_6585837875154387424_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=MzgwNDEyODI4NTYyMjI4MjIwNw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTc5OS5zZHIuQzMifQ%3D%3D&_nc_ohc=ka7gvRAy2SMQ7kNvwF8FtzO&_nc_oc=AdmHfOMYZd_gJy7Y6ALsi64a5KXh7Er9XKDhXt2C_YN1b_o18fWUDcvXhbBNBn9YbZ2mR87GqAOL5We9pqHbD0Wn&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfoGGLXuW20-bjfQa-q188vDuu1lyGrmwSQRrpHYeyJADA&oe=6966539A
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/584388634_18671576239056421_6689684699476595415_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=MzgwNDEyODI4NTYyMjMxMzgyMg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTc5OS5zZHIuQzMifQ%3D%3D&_nc_ohc=YVrhdmUvQj0Q7kNvwHLRN4G&_nc_oc=AdmQmH1gsBFNq2kf_l6Mxw7L5WokbWsjGsDkqI8mJHZWEb0OCJINNhT7Hp81g3fewTLsZ9cxfm5kAu_lVGorQV0j&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfoKlHcBPXbYUAiO3s9UCGAR9yZB66gZKWzPfz4Nm_j4PA&oe=69662F9F
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/611269111_18671576254056421_870264414783850716_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=108&ig_cache_key=MzgwNDEyODI4NTY2NDI0MTUyNw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=aatzjWd3ldEQ7kNvwFG-pfY&_nc_oc=AdmdcvYbzXYaNzf6QDlDXeW9SIzm0W13rV-la564xXHremMlQoaH-osN2zetrg7_Cd8AmuJoWpdyzyFc9YYAcIdD&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afrdncwt0jVeTl0NQJMmYtBTOz392KsPYX_eE_0bMq676A&oe=69663F5E
                          igGeoTaggedLocation: null
                          likes: 3343821
                          comments: 31076
                          engagementRate: 0.005
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1767181485000
                          contentId: DS7TbdiCPa7
                          isSponsored: false
                          description: >-
                            Muitos parabéns, Mãe! Obrigado por tudo o que és e
                            por estares sempre ao meu lado. Amo-te muito ❤️
                          coverImageUrl: >-
                            https://www.instagram.com/p/DS7TbdiCPa7/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://www.instagram.com/p/DS7TbdiCPa7/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 6314962
                          comments: 62032
                          engagementRate: 0.0095
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1767127032000
                          contentId: DS5rkX1AGh-
                          isSponsored: false
                          description: >-
                            We are on the right path and we know what we need to
                            do in 2026! 🟡🔵
                          coverImageUrl: >-
                            https://www.instagram.com/p/DS5rkX1AGh-/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/606454711_18670020949056421_1538560158839278427_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5OTI1OTM2NjkzMTA4OTE2NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMS5zZHIuQzMifQ%3D%3D&_nc_ohc=Dtl75yjPieIQ7kNvwGOs0QY&_nc_oc=AdmtwwlacD29dyTPXgllahyjkoLwhWrqrdpVNiHxfBnKms6KTj2wfLCRYsuI6_MGoE_Py4q7qma_Qt3SFcwDXvaP&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfoXbIgDXCU03G8qwMudfjr-cF7qOX3UFzpEBJ-p_rIrGg&oe=69665D89
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/608829644_18670020958056421_377102132518794221_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5OTI1OTM2NjkyMjY4MjQyNg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=wcch-jSnd_0Q7kNvwFt7X0a&_nc_oc=AdlZIpzcVGQ-_5cpqosJJYAAaA2g8jNlVBMDmaAGKwY0AYVnBaS2L_5nO_iCaTTrGjialyRsgieTogsSWribT9qe&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afrz1OE-ATR5qwptovM7W2KkqeS6OD6ulWat9OuM53lAnA&oe=69665519
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/606960636_18670020967056421_7430034199159642171_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5OTI1OTM2NzA2NTMyMDg5MA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=0N3GZqEKOvYQ7kNvwFCSGcs&_nc_oc=AdnHyyq1YNq_ot43KISLKtAivLRg19QIRGJXTBhUXg5kChTpbGi9wcuaSG92opDQBx5VfoCsfC95BQraa0hH-yLF&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfoGgaQHjvZCBqIhYtpnqgihGIISS7rhQFDNLcq7B55IRg&oe=69665269
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/606680773_18670020976056421_5839538643603915006_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzc5OTI1OTM2NjkzMTA3MDA3MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=4uM6SY8RT7kQ7kNvwG9KWTP&_nc_oc=Adl3AS-eKUpKtrkqfToZ_ZZezs8Bzju7lsncfl7vxvk6XXRu_N73TslB72G-Er1qv70awFjQZuwxbFfbh5fhQcUF&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqLU2ZplONZn0FxBv5eeU2Iv9kZMfonC7f3AprpuZ9aSA&oe=69663BBD
                          igGeoTaggedLocation: null
                          likes: 3812987
                          comments: 32043
                          engagementRate: 0.0057
                          hashtags: []
                          taggedCreators:
                            - alnassr
                        - publishTime: 1766947188000
                          contentId: DS0UiwLDbYf
                          isSponsored: false
                          description: >-
                            A special moment to end the year on. I carry on with
                            the same passion, commitment and hunger as always to
                            reach my goals. 


                            Thank you to eve
                          coverImageUrl: >-
                            https://www.instagram.com/p/DS0UiwLDbYf/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t39.30808-6/608152706_1518694569617078_1624584836312244450_n.jpg?stp=c0.89.724.724a_dst-jpg_e35_s724x724_tt6&_nc_cat=1&ig_cache_key=Mzc5Nzc1MDcyMzY0ODUwNjYxOA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjcyNHg5MDMuc2RyLkMzIn0%3D&_nc_ohc=uMjTG7rKu1YQ7kNvwH1H-US&_nc_oc=Adl83Pmm-38nQXa-xNl-NgPhzt-E_aDAbuVYIX131zMSXdu0YJU3m0HbR-nMLTHtqd8StbQla1N04Za_S3fjr4r9&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpRTZpAPUGN2k8V3O6ykaCV1VV2TlxomN245cS0zRecLQ&oe=69663662
                            - >-
                              https://scontent.cdninstagram.com/v/t39.30808-6/608954194_1518693992950469_7930921214109586041_n.jpg?stp=c0.1.1093.1364a_dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5Nzc1MDcyMzk3NTY3NDcyOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwOTN4MTM2Ni5zZHIuQzMifQ%3D%3D&_nc_ohc=TCPY-esI6SYQ7kNvwHLyGi2&_nc_oc=Adm70KoeIJbc5fxWKw5WvUyT4SQ9JEOYFgI25s8MOTURFqr5l3FCArWs6NcuRy8upzRpgaMOsmukur9x9g4vA2YB&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqZQYNlZSOcNmjlvz8Qyqi2C_pvcHsWLZLKez_3PYFiUQ&oe=69663E2C
                            - >-
                              https://scontent.cdninstagram.com/v/t39.30808-6/606138905_1518693106283891_523667207531762695_n.jpg?stp=c0.1.1367.1706a_dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5Nzc1MDcyMjk0Mzg5OTcyOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEzNjd4MTcwOC5zZHIuQzMifQ%3D%3D&_nc_ohc=QgAEPLL9Z0cQ7kNvwHWWL81&_nc_oc=AdkCqREOSvRY942xOG64wdYV7F2DfCRb9hvziKgdHfKKJMpX3El7jfEmDTr-5yGoh2zZMgdmjgnUdoxHAD4QsPcY&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfrXZegK-ifVuf-daSrLjmZikfBPyJxJsogb3VDiJFxAVQ&oe=69664725
                            - >-
                              https://scontent.cdninstagram.com/v/t39.30808-6/607137267_1518693096283892_2108178947372664993_n.jpg?stp=c0.1.1367.1706a_dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5Nzc1MDcyMTkyMDQ0NDIwMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEzNjd4MTcwOC5zZHIuQzMifQ%3D%3D&_nc_ohc=WwSZZQ4ZyzMQ7kNvwFWA9-6&_nc_oc=AdnhxSZOTZrPO0G8CMKVHmTQ7QYoGw1c1g0xKVZ49RVdYpuXpOBMU3NvDmYzIZhbJJPKHXZXoiFxJUtw--502Kl5&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfohsJTlsFzjLY0nqcRjlmofOYsPyMRZ5m6gtjCytNoPfw&oe=69665D3E
                          igGeoTaggedLocation: null
                          likes: 8304184
                          comments: 80377
                          engagementRate: 0.0125
                          hashtags: []
                          taggedCreators:
                            - georginagio
                        - publishTime: 1766855530000
                          contentId: DSxlt9RCKos
                          isSponsored: false
                          description: Hard work is the way to success!
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSxlt9RCKos/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/607057722_18669317761056421_6598513550874183260_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5Njk4MTgzMzU3ODA3Nzg4NQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=v6AU7zJOPhAQ7kNvwFF0HWS&_nc_oc=AdmtTmyBG1eJlcgKKGeaLsLU-4FK9J988GQTEByiriaX3Eqh6tcn244SC1HfoEjZIJOgkJbRwuFMKmF1RAMWjVsb&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfodQA09nyff6RfjVwJAzVUnKVFslPo3Oef9QI9er9PM6g&oe=6966485F
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/608401710_18669317770056421_578978225259329278_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5Njk4MTgzMzI2NzY4MjcxOA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=8l_x-zmObE8Q7kNvwEtZ_a-&_nc_oc=Admv0G8nZlv2jtmom9xvg2uJkgafGAQiAFHn6G0h822r4ggU3eB5Z7KvoJ0sN9f9UoQNTGIjn1o4TlLm95LGWK1G&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afp78jUJHm2JKkpjTeasBZHAUbK3qwMsEtOP88_QAEIF0w&oe=69665EDE
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/607547502_18669317779056421_7588697297551117939_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5Njk4MTgzMzI3NjA4MDI0MQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTc5OS5zZHIuQzMifQ%3D%3D&_nc_ohc=BU45ZGsFjYkQ7kNvwGY88et&_nc_oc=AdmZtrt_sryxE5Rph59tevgndTNi4exHevz0b7oMl3eBwUThX03yXKaa2I--CzkVR5QlczextsU8g5jpTQwFUKyz&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqOunq7YLn8gUrQnFncrSt0mAyr6Frd6OP0or5MggFKwQ&oe=69664137
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/586711759_18669317788056421_4288043490124622115_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=109&ig_cache_key=Mzc5Njk4MTgzMzU5NDg1OTIxOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=fVpfV3Pv9WAQ7kNvwHEdxZO&_nc_oc=AdnSJ4IphoLbtrpMbSXs1IBpqF2O6V8d0sbA5t9WSrhPpW-BS7YIw6vfcyvPtpIrlCxTrZusSHpJ38a7r6ak_Zvf&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpB43iWva4bGiledVQkF19nCLRQ2GhanQIfFC55BjFOrA&oe=6966536C
                          igGeoTaggedLocation: null
                          likes: 5160491
                          comments: 53485
                          engagementRate: 0.0078
                          hashtags: []
                          taggedCreators:
                            - alnassr
                        - publishTime: 1766773115000
                          contentId: DSvIhjcAHW5
                          isSponsored: false
                          description: Ready for more ⚽️😁
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSvIhjcAHW5/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/600864819_18669122848056421_5591289704985259956_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5NjI5MDQ5Mjg4MzI5MTU4Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=vTMXuZDsIDsQ7kNvwGWVhQp&_nc_oc=AdkMExWDSJwCFwIWsfpi8eRWq3zUrbvRaOOGilIsUJ3mydEgwSpczTrGnbx2WlieYm2uUm31JyulD9aak8r-bd3B&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpyVy3TkvGIcH6ovOsTjW2yILWFHJe_AAN7ibFuBB92Hg&oe=69666291
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587798348_18669122860056421_7023170305536021744_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5NjI5MDQ5Mjg5MTY4MzIzMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=K9qKXe_pEWoQ7kNvwEpGIyK&_nc_oc=AdlT02w3dmgpYj1crk843v6kAAF_oKPS3PXeIe9f9eFY_38Bp-YrnW8el7SB1D90oxj1xOeFy6sHcvHIKTB8F4TA&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afp_WoKTAtfV-OhSKbInJG5z3EpqLJPObK5AjaFLqfAxWg&oe=69662F33
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/605625511_18669122872056421_5192366656564559339_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzc5NjI5MDQ5Mjg4MzMwMzcyOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=Q56pCUIsmjwQ7kNvwHMOQks&_nc_oc=Adm4B2TxY7zEh7I8tFbSGQ8LPGOXKEY-Mo_Xd4NZXTl9jg514HlzWF0hGql3MjiTIE_Qbq-z2OkCl4DXtMZz1N6Y&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfrS4dxLJKmKznkf1aURVzOggf1z0yfaBygZb8NTNhTv_g&oe=69662C95
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/607428378_18669122887056421_966989934421467884_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzc5NjI5MDQ5Mjk1MDQxNTkwMA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=vOx-OsWq9TEQ7kNvwGa9SmN&_nc_oc=AdlXhmFVF8K6dgztb6mSJDBBHFvtyxKqt6_iGu7btlsjROQH878eGG1wzoguW2Ecfr0PUDbd34GBTNoFsczHtqjN&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afqk200Oh63Ps1Adp0aLDI_OS5PUCnDLOrm30f9dQqvegA&oe=6966441E
                          igGeoTaggedLocation: null
                          likes: 3812563
                          comments: 32243
                          engagementRate: 0.0057
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1766426707000
                          contentId: DSkzzZ0FdS_
                          isSponsored: false
                          description: >-
                            Fuel your confidence. CR7 Energy - feel the drive in
                            every moment.⚡️


                            #CR7Fragances #CR7Energy
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSkzzZ0FdS_/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t39.30808-6/605137028_1514456496707552_2530710364046474663_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5MzM4NDYwNzgwMzg3ODMwNw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTM1MC5zZHIuQzMifQ%3D%3D&_nc_ohc=b6RYiYxqguQQ7kNvwE0gV50&_nc_oc=Admzfzdh381IE_VMPUh4-TSiLlZQCHPqyaP8tT3hh6zGNye3AjjoSE9MMhWXSRtIHosUDxTECpqqz9hHsb-b3QhG&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfrFWahpzyAsmv5c4cjE6ed-49MMMhjW_82AkLG59BkBSA&oe=69665806
                            - >-
                              https://scontent.cdninstagram.com/v/t39.30808-6/605188719_1514456493374219_2239047837622990473_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzc5MzM4NDYwNzUzNTQyMTk5Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTM1MC5zZHIuQzMifQ%3D%3D&_nc_ohc=8ElYT13sdEUQ7kNvwHXwyop&_nc_oc=Adk5d3RhmblAd2z4LyY4Q_R0JSIAniwxvcRTzFpN1DhOvQoMxCgjDFUH3PdULxImT6dX6VTdJRnrZiCssLLp9ece&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpnBVk6H3S73NVKMnjUOR3EywrmU74KcZ6DXJlu1prJrw&oe=69665417
                          igGeoTaggedLocation: null
                          likes: 4074509
                          comments: 36196
                          engagementRate: 0.0061
                          hashtags:
                            - '#cr7fragances'
                            - '#cr7energy'
                          taggedCreators: []
                        - publishTime: 1766251951000
                          contentId: DSfme6niITX
                          isSponsored: false
                          description: >-
                            This Christmas, pick a challenge and push yourself
                            further. Break your limits with @avacr7.
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSfme6niITX/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/603911995_18667755976056421_8987570569048868068_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5MTkxODY1MTYzNzU0ODgzMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTM1MC5zZHIuQzMifQ%3D%3D&_nc_ohc=66JP5caiUJEQ7kNvwHUkgT5&_nc_oc=AdkXLc14bYhUiUJl5JDuWGbwG7xubNGRoz94h_wpnWD_K3kZAu7Uw0I45jcav6iZdfcPdP03srXPGmTqr7_-qiSI&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afr70aG79uywbWu0t2o_h1vsOJQTZh8LhrmLPr9QAmhDkg&oe=69663D4B
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/603086192_18667755985056421_3486008902128237110_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzc5MTkxODY1MTYzNzU0NTcwNw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTM1MC5zZHIuQzMifQ%3D%3D&_nc_ohc=mHlSH_gnLUYQ7kNvwGcxfjF&_nc_oc=AdkLbm_NqeqDW-eCS5s3NyKA1OKVpgbHQqTZSJD_JN4C2RoEZ4ZHZPbH6eHk0QySuX40zmKHzMl6x_DEWcAIo4Hq&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpNLrLFAoCBDL4-bcfzRIH3lut-M-Y4UsSadu6bwgDGKw&oe=696642E6
                          igGeoTaggedLocation: null
                          likes: 2861470
                          comments: 21035
                          engagementRate: 0.0043
                          hashtags: []
                          taggedCreators:
                            - avacr7
                        - publishTime: 1766137225000
                          contentId: DScLqP2CPbG
                          isSponsored: false
                          description: After sauna 🧘‍♂️😅
                          coverImageUrl: >-
                            https://www.instagram.com/p/DScLqP2CPbG/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://www.instagram.com/p/DScLqP2CPbG/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 19446033
                          comments: 347507
                          engagementRate: 0.0295
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1766080920000
                          contentId: DSagRLYiK2w
                          isSponsored: false
                          description: |-
                            Then and now, the skill never fades. 😉
                            10 years of #CR7Underwear.
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSagRLYiK2w/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/589946635_18667300435056421_6985282292540599096_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc5MDQ4Mzk0MDg5Nzc2ODQyOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTM1MC5zZHIuQzMifQ%3D%3D&_nc_ohc=B5y8APjTRbYQ7kNvwG13Xw1&_nc_oc=Adla0vTpoRDCgMzJ1rhYMrqvYzfSpcxpGZCDMO7BeJ2Bhiu6Q1U-1ucpDVv0j1VX2bsE7F43ui28KePdXW6ICAsO&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfrYm8p5Ozv1xs5GzREAvrnN4pXYsx3_6ESYUnj6IBhUrA&oe=69666223
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/586654598_18667300438056421_3484330116263856152_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzc5MDQ4Mzk0MDg4OTM1OTY5MA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTM1MC5zZHIuQzMifQ%3D%3D&_nc_ohc=t4VXIMZN_OcQ7kNvwELL4b1&_nc_oc=AdlAnkfaMhcSty_dpcAN9X8Jbm00BBSeHyLwBf6kHohNE6Ai07-tPZoeAReyjqJYNUDIEDy4Mr99PcsO12swRqZC&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpCxMOSwPA6JeFMQUgZz4Tx8NTF1xQ5TcTjhybXJWjB1w&oe=69663A46
                          igGeoTaggedLocation: null
                          likes: 6891774
                          comments: 50815
                          engagementRate: 0.0104
                          hashtags:
                            - '#cr7underwear'
                          taggedCreators: []
                        - publishTime: 1765991201000
                          contentId: DSX1JG-CHvf
                          isSponsored: false
                          description: One step at a time 👍🏼
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSX1JG-CHvf/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/588091181_18667080790056421_4359101660269363876_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc4OTczMTMyMjI4NjA0OTQzMw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=0v1eesYx1JQQ7kNvwGDxVCU&_nc_oc=AdkBsvDQ4fxQpU1rAV3YKf3yKfI75UJqBv1qsFyVXrr1OnPSIoslgItW4czQCHtuFK1MQq4RqzDbvx9shTC6BBRc&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqpF-8N0zFZgc3P_oIiSHTDfCTbl1cZia1sAC6WSmQixQ&oe=69664284
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/588164443_18667080799056421_7681766630214167413_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=109&ig_cache_key=Mzc4OTczMTMyMjI2OTMyMTQ2Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTc5OS5zZHIuQzMifQ%3D%3D&_nc_ohc=FrNExcaywgsQ7kNvwH0KdQE&_nc_oc=AdlAWLG3wZvWwpuiKAhK1H7_zYJB9Oc0X1YNx50KcqisFzcGQMtJwOrvz8LihKBFIfjSC2hkKzE9fvjMArEv4cww&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfrkayauehRY0shCihYZLWBEP1XFabndxWpE54LK33KaWw&oe=69662C9F
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/589025712_18667080808056421_4115222855818571159_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzc4OTczMTMyMjMxMTIxNjU0Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=va8dnN4fVH8Q7kNvwHU8HCS&_nc_oc=AdlcHdoHNO6dE0ssZDMq4LmfYSgCbL9-Gk_GBkhPcpg4vUEKMtgsPT4I7LRmakcpAViGH4P8WWxePkn5qlK8x0DO&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afo_-vN3HSWqrLgnBlGuWyGdmwabq5l2BP282_O0KeWnew&oe=6966442A
                          igGeoTaggedLocation: null
                          likes: 6629750
                          comments: 44385
                          engagementRate: 0.01
                          hashtags: []
                          taggedCreators:
                            - alnassr
                        - publishTime: 1765707689000
                          contentId: DSPYYsjCK5h
                          isSponsored: false
                          description: ✌🏽
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSPYYsjCK5h/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://www.instagram.com/p/DSPYYsjCK5h/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 6391082
                          comments: 76150
                          engagementRate: 0.0096
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1765564421000
                          contentId: DSLHHeBFO-c
                          isSponsored: false
                          description: >-
                            Wherever you play, these bands keep you ready for
                            every moment. Are you home or away? 👀👇
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSLHHeBFO-c/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/589392008_18552024283016159_1425048830652491957_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc4NjE1MTE0MTM2NjI2MTIyNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=ymsQIDEMEKUQ7kNvwEPMKZd&_nc_oc=Adn7AqpKLibFOyg7usig68n73Un-q6Y2-SfNIRbvp1Bal8bHhPyZswMPEF4P3EXUQdSvp2f0zLtHdmprCYoBZ8Kt&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfoCbFLo-WuGBfMRpxtGhmbxgIq6bNLCKj5S5J1g6aYI2w&oe=696637B6
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/598601123_18552024274016159_6513637656102772075_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=Mzc4NjE1MTE0MTY2ODI4ODY1NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=zK1nGZpBoRwQ7kNvwHDQs2p&_nc_oc=AdmmHuQaKXaLTZUmQBFKXckAnx5Gm-eFv3wK5Zzov99bPvKIWVvL1mVVgXwR8tTyNPQj3XpT2ttYenfbBPeoxYri&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afrk1SlVVG0v50-RqM7T0sKHG80TgEwHL3bn9LYEeP8hkA&oe=696638EF
                          igGeoTaggedLocation: null
                          likes: 967242
                          comments: 9838
                          engagementRate: 0.0015
                          hashtags: []
                          taggedCreators:
                            - cristiano
                        - publishTime: 1765023832000
                          contentId: DR7ACEHiP-w
                          isSponsored: false
                          description: 🦾
                          coverImageUrl: >-
                            https://www.instagram.com/p/DR7ACEHiP-w/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587817621_18664871770056421_692766851163219489_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc4MTYxNjQzNjY1Mzg4MjAxMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEzNzV4MTcyMC5zZHIuQzMifQ%3D%3D&_nc_ohc=EJD-yz9uy84Q7kNvwGt-1C0&_nc_oc=AdkfMrvq31bwdVFuw0UIfDRjoFKA-iEyCAiOquXAaoCX61XTLWlRfE_3rfhcML9QHOFjIm5rpzrk2iJpUfL2kBbZ&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afqu70Os6GgkePqzAU21K3T4qxF5zzB3eQZx_hRJLVxD8g&oe=6966627C
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/590679760_18664871785056421_3165036813401116146_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=109&ig_cache_key=Mzc4MTYxNjQzNjM0MzUwOTQ3Mw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=0zkHaW7dWJYQ7kNvwHtdEfW&_nc_oc=AdmevfvbqjhlbdgsfGZ9fSG7WspWsdkEqa-HeqpB1pZwXv6aqAPpBqCDH-0XUQVNre-X96fCoVOjKyAuwBfLpOfL&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afo3wfiJwFbrj2VXETWEP9GSyWlWKNMDYMe_2mXYLBml0A&oe=69665AEF
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/589646088_18664871800056421_3640156764905315815_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzc4MTYxNjQzNjM0MzUwMjkzNg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=klatoMGH4AAQ7kNvwFyNsPi&_nc_oc=AdmRwWNvOX6nN1YsL7Ul4qFCEENFpTs0Z6XXu-uzPHSaZ71POdZINxuOWfYmNIWyw7Ll0gRF8UFgvVG4iKiKvYEO&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afq2DrK43h9i6XTakdX6mo_xaXiEnhkllUb1JroXZkW1pQ&oe=69663A18
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/589159539_18664871803056421_3778960796661435567_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzc4MTYxNjQzNjMzNTA5ODQxNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=fyrcTQV2OuYQ7kNvwEpnksx&_nc_oc=AdlHGhc3-5N-ou1hl_pSvkaiwgmfrBsReV0K7jprLnaWRwIhQTSdgTJw8SXMLnX1ROYQsAcW2U1Df241gvtxGl8x&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqIP7mSbqDBGUBOCXKwaEClO_UpNshZN98jWc9nNJfwaw&oe=696660B6
                          igGeoTaggedLocation: null
                          likes: 4971626
                          comments: 46220
                          engagementRate: 0.0075
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1764320670000
                          contentId: DRmC24WiKDg
                          isSponsored: false
                          description: >-
                            I’m always pushing to feel my best. @whoop helps me
                            do that. 💪🏼


                            Make this the season you invest in better health
                            with the best WHOOP offe
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRmC24WiKDg/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587814439_18663342988056421_7554778705471755120_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=102&ig_cache_key=Mzc3NTcxNzg5MzAxMTQ1Mjc0Mg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=WkClqYQ6dxoQ7kNvwF-eCgB&_nc_oc=AdlK33fe1u55LgLUJrwzAYn5RdENQ8O3Fi_s3yTdW3sECSvJcqlzk3l3k8rWUN3v4VxEemPpoTU2E7Daf3mxVs2H&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfomJdU3WdJwSHd2lCfJL_r34ZEdyQJd7iFRLX8LQkIk8Q&oe=69665831
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587814761_18663342997056421_389571138540889032_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=103&ig_cache_key=Mzc3NTcxNzg5Mjk5NDY0NjA4OA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=zF1GWN66sIYQ7kNvwGfy1Us&_nc_oc=Adnd-zk1Zqi6--6gMPKixnV726kFMhG8fDl5G6I9Nsac9WgXM59tq48GPW4XeWPZy_1Qw-jzClGuLL_RSquC5G2j&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqWKCFP35MgqdVubJnWTBO_KQMm_Be_nF3IQJ7PBz3D4w&oe=69662F62
                          igGeoTaggedLocation: null
                          likes: 4886717
                          comments: 28796
                          engagementRate: 0.0073
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1764236713000
                          contentId: DRjiuM0iLFj
                          isSponsored: false
                          description: >-
                            Recovery is key to my success 🔑 


                            Don’t miss your chance to recover with top
                            technology. @avacr7 is now on Black Friday with up
                            to 50% off 
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRjiuM0iLFj/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587486867_18663181369056421_8763523447249105261_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=1&ig_cache_key=Mzc3NTAxMzYwNjA0NDI2OTcyNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwMDF4MTMzNC5zZHIuQzMifQ%3D%3D&_nc_ohc=u9uZ6mUH4sAQ7kNvwHTfOx6&_nc_oc=AdmzqmsfesS05OrOZXA8BsGYtLGR7p9499kdhuPg7IDP7YL2c1eLQOPTjDrhfWAgE4o6vqsLh5Pvp5ZEVm9gbYgp&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfoxLCk0cZ-H03qrjepFHrJKHWfNG_j2hTv51vyTzyz80w&oe=69666239
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587081287_18663181378056421_8138630744248108341_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=105&ig_cache_key=Mzc3NTAxMzYwNjA0NDI0NDcwMg%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwMDF4MTMzNC5zZHIuQzMifQ%3D%3D&_nc_ohc=rTejRFpLRpwQ7kNvwH6Jppa&_nc_oc=AdmYfcdAyvWLWQEMHF263ubY6W6xkIOnQCjCQjUhF1tyHGUUV1imbr8f3ZzaaucU82XrHZTkucj6_XBVFavfuAT7&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afq9XITiH79ZZZ7yEIbr_2cqCZTl41s5OrJOnA9fT5y-iw&oe=69665340
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/586858360_18663181387056421_2277258638846743658_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=106&ig_cache_key=Mzc3NTAxMzYwNjA3Nzc3ODg5Ng%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjEwODB4MTQzMi5zZHIuQzMifQ%3D%3D&_nc_ohc=Ek7Cf8v0xLwQ7kNvwEjSkYI&_nc_oc=AdlK7OTRtHouzz_J8AliyMcMHjG2s-TPqLNwdVqdl_qF6SrIcCRGvqOpsj3Ilg0f3N-1mFQowxK8nB7sVJPSYBlW&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpGy8Sr2Tupj4X5INHUVi1waZPTaRyTGsezPGi7Xo432g&oe=69665836
                          igGeoTaggedLocation: null
                          likes: 3105340
                          comments: 17994
                          engagementRate: 0.0047
                          hashtags: []
                          taggedCreators:
                            - avacr7
                        - publishTime: 1764001808000
                          contentId: DRciq2cFK0i
                          isSponsored: false
                          description: >-
                            Low inflammation. Efficient oxygen delivery.
                            Metabolic precision. Cristiano Ronaldo’s biomarkers
                            reveal what separates him from the rest, an
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRciq2cFK0i/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/587574206_18548904580016159_7995134758621938211_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzc3MzA0Mjk4ODUyOTM2NTEyNQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=MkUDtqqIcUYQ7kNvwHK12a4&_nc_oc=AdkpjkbnbnQwjFZXIKFZK4ZiLsCNLM8YHt1rrRY_zdcYgk1nqj8S1fbc0XrO9hSBlE2qpLpRC8lxwMbpqcISo9ka&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfrYhIOXG1V_FV-PB2mgZqX77-iGHXPzCBXvqhs6NhCT8w&oe=6966526B
                          igGeoTaggedLocation: null
                          likes: 1066033
                          comments: 12358
                          engagementRate: 0.0016
                          hashtags: []
                          taggedCreators:
                            - cristiano
                        - publishTime: 1763754074000
                          contentId: DRVKKTygA2P
                          isSponsored: false
                          description: Back 🟡🔵
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRVKKTygA2P/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/583880410_18662228161056421_5863765173882101851_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=101&ig_cache_key=Mzc3MDk2NDkzOTc5NjE1NzgxMQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=07xmEt_mzDEQ7kNvwF01BIC&_nc_oc=AdmEWUkbv-ECHdL_zzhnvhl3xBy-_I3y4Y0VECk4zsl0BTmnQKF5uxjjpS1G0OgLxNOmKRZ34_A-5IQ5oS3IqfOe&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfpV-IqMHQ2fbL-oV6QHWiAuIa378nqbkbpRqWWu5EXljg&oe=6966562E
                          igGeoTaggedLocation: null
                          likes: 4481740
                          comments: 37262
                          engagementRate: 0.0067
                          hashtags: []
                          taggedCreators:
                            - alnassr
                        - publishTime: 1763574191000
                          contentId: DRPzD6oCLFZ
                          isSponsored: false
                          description: >-
                            Thank you Mr. President for your invitation and for
                            the warm welcome you and the First Lady gave me and
                            my future wife, @georginagio. Each o
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRPzD6oCLFZ/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/583720094_18661902718056421_4523358027666752920_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=110&ig_cache_key=Mzc2OTQ1NTk2MzAyNDE5NTI3NA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTQzOS5zZHIuQzMifQ%3D%3D&_nc_ohc=6eM1S4fNSkoQ7kNvwGwrYR8&_nc_oc=Adk08_RC2SFbV1IYOm8bvzKNAykUDn0gDfSj4KplaSo2NUJGyV0kAfqYttaksMd-qNiJ1_4arvRA8tQB92OfF0dz&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_Afo3qp7wDuLG--753LMnw84TI4_wuc2aIAwptW6HeUdDxA&oe=6966618C
                          igGeoTaggedLocation: null
                          likes: 28938447
                          comments: 402754
                          engagementRate: 0.0437
                          hashtags: []
                          taggedCreators:
                            - georginagio
                            - whitehouse
                            - potus
                        - publishTime: 1763310079000
                          contentId: DRH7TpTiAxK
                          isSponsored: false
                          description: ESTAMOS NO MUNDIAL! VAMOS COM TUDO, PORTUGAL! 🇵🇹
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRH7TpTiAxK/media/?size=l
                          carouselImageUrls:
                            - >-
                              https://scontent.cdninstagram.com/v/t51.82787-15/581522266_18661431511056421_4007962002968142506_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=109&ig_cache_key=Mzc2NzI0MDQyNjgwMjEzOTE1Nw%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTgwMC5zZHIuQzMifQ%3D%3D&_nc_ohc=QBtU-KnhdTAQ7kNvwFI6DWr&_nc_oc=Adli4QKFihvaSyGhZVePgOjsL4KWezvdMkw79TK2D6MMr8UkXRnCvOIr2cdKjd1HSEDawe87qsCTAdyzbZ93kqVM&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=f-KrGwIjrGunj1yq0L-4fw&oh=00_AfqZWrIG4AMUOKbPjWcSz_4l7QLn5LvVMCJaBa7Iz4stig&oe=69663EB8
                          igGeoTaggedLocation: null
                          likes: 7343117
                          comments: 62834
                          engagementRate: 0.011
                          hashtags: []
                          taggedCreators:
                            - portugal
                      recentReels:
                        - publishTime: 1767025828000
                          contentId: DS2pxhLCJTK
                          isSponsored: false
                          description: >-
                            Game-changers stop time. They are timeless.


                            Congratulations @djokernole for having in your hands
                            a so deserved first-ever Globe Soccer Awar
                          coverImageUrl: >-
                            https://www.instagram.com/p/DS2pxhLCJTK/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 5450766
                          comments: 59896
                          views: 89064050
                          engagementRate: 0.0619
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1766660544000
                          contentId: DSrxW2EiDsk
                          isSponsored: false
                          description: >-
                            Esperança que se renova, amor que abraça, família
                            que apoia e luz que guia. Feliz Natal 🎄 ❤️ ✨
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSrxW2EiDsk/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 8284332
                          comments: 80841
                          views: 146151449
                          engagementRate: 0.0572
                          hashtags: []
                          taggedCreators:
                            - georginagio
                        - publishTime: 1765547815000
                          contentId: DSKnNQqiA8H
                          isSponsored: false
                          description: >-
                            Madrid. December 13. 

                            WOW goes LIVE on UR at 1PM EST. 


                            A new way to experience action sports - immersive,
                            bold, built for the next generati
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSKnNQqiA8H/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 885363
                          comments: 9965
                          views: 46829179
                          engagementRate: 0.0191
                          hashtags: []
                          taggedCreators:
                            - iliatopuria
                            - wowfc
                        - publishTime: 1765206210000
                          contentId: DSAb2ptCBGL
                          isSponsored: false
                          description: >-
                            The year ends. The game evolves. And we evolve with
                            it. We move #ForeverForward 🔥⏩
                          coverImageUrl: >-
                            https://www.instagram.com/p/DSAb2ptCBGL/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 735003
                          comments: 15481
                          views: 34884947
                          engagementRate: 0.0215
                          hashtags:
                            - '#foreverforward'
                          taggedCreators:
                            - binance
                        - publishTime: 1764867627000
                          contentId: DR2Vz63CPVY
                          isSponsored: false
                          description: >-
                            Winners never stop learning. Never stop asking. I
                            use @perplexity to get ahead. 


                            Perplexity.ai/ronaldo is just the beginning.
                          coverImageUrl: >-
                            https://www.instagram.com/p/DR2Vz63CPVY/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 1091795
                          comments: 44255
                          views: 41677181
                          engagementRate: 0.0273
                          hashtags: []
                          taggedCreators:
                            - perplexity
                        - publishTime: 1764360143000
                          contentId: DRnOEjME21V
                          isSponsored: false
                          description: >-
                            Ronaldo vs My Goalie Robot. Thanks to @tmobile for
                            helping me get my latest invention ready to take on
                            @cristiano at his own game! #sponsore
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRnOEjME21V/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 2647032
                          comments: 19267
                          views: 75390877
                          engagementRate: 0.0354
                          hashtags:
                            - '#sponsored'
                          taggedCreators:
                            - cristiano
                        - publishTime: 1763928052000
                          contentId: DRaV7mnAGq7
                          isSponsored: false
                          description: Best caption wins! 🤔
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRaV7mnAGq7/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 18386191
                          comments: 631039
                          views: 250628732
                          engagementRate: 0.0759
                          hashtags: []
                          taggedCreators:
                            - alnassr
                        - publishTime: 1763561096000
                          contentId: DRPZ1xokeMN
                          isSponsored: false
                          description: |-
                            Two GOATS. 

                            CR7 x 45/47 🔥
                          coverImageUrl: >-
                            https://www.instagram.com/p/DRPZ1xokeMN/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 9892568
                          comments: 197288
                          views: 212761237
                          engagementRate: 0.0474
                          hashtags: []
                          taggedCreators:
                            - cristiano
                            - potus
                        - publishTime: 1762538418000
                          contentId: DQw7ZjRCHnV
                          isSponsored: false
                          description: >-
                            Unleash your inner champion.

                            The new CR7 Energy captures an unstoppable spirit in
                            every spray.

                            Are you ready to feel the Energy?


                            #CR7Fragan
                          coverImageUrl: >-
                            https://www.instagram.com/p/DQw7ZjRCHnV/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 1474720
                          comments: 16213
                          views: 45182985
                          engagementRate: 0.033
                          hashtags:
                            - '#cr7fragances'
                            - '#cr7energy'
                          taggedCreators:
                            - cristiano
                        - publishTime: 1762178954000
                          contentId: DQmNZpDiABE
                          isSponsored: false
                          description: |-
                            No filters. No scripts. Just us. 

                            Coming soon with my friend @piersmorgan
                          coverImageUrl: >-
                            https://www.instagram.com/p/DQmNZpDiABE/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 2079807
                          comments: 98226
                          views: 51205580
                          engagementRate: 0.0425
                          hashtags: []
                          taggedCreators: []
                        - publishTime: 1761483603000
                          contentId: DQRfhEjDL23
                          isSponsored: false
                          description: |-
                            950 goals ⚽🔥 The legacy continues.

                            Join #7heSelection with Binance
                            NFT holder or not - you can be part of it 👇

                            Holders: Fill up the surv
                          coverImageUrl: >-
                            https://www.instagram.com/p/DQRfhEjDL23/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 793049
                          comments: 13466
                          views: 35559234
                          engagementRate: 0.0227
                          hashtags:
                            - '#7heselection'
                          taggedCreators:
                            - cristiano
                        - publishTime: 1761319015000
                          contentId: DQMlmx3jOOV
                          isSponsored: false
                          description: >-
                            Cristiano Ronaldo’s most powerful tool? Strategic
                            sleep. Lock in your bedtime, dial in your mornings,
                            and feel the difference 💪
                          coverImageUrl: >-
                            https://www.instagram.com/p/DQMlmx3jOOV/media/?size=l
                          igGeoTaggedLocation: null
                          likes: 1691160
                          comments: 14940
                          views: 46286914
                          engagementRate: 0.0369
                          hashtags: []
                          taggedCreators:
                            - cristiano
                    creditsUsed: 1
                    creditsAvailable: -1
                    traceId: a67a02e9802d17100ab06375bb2cb37c
                    timestamp: 1767935498559
                    errorCode: ''
                    errorDescription: ''
                    success: true
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                title: ValidationErrorResponse
                description: Parameter validation error response format.
                properties:
                  success:
                    const: false
                  error:
                    type: string
                  message:
                    type: string
                  timestamp:
                    type: integer
                required:
                  - success
                  - error
                  - message
                  - timestamp
              examples:
                missing uniqueId:
                  summary: Missing uniqueId
                  value:
                    success: false
                    error: VALIDATION_ERROR
                    message: 'Missing required field: ''uniqueId''.'
                    timestamp: 1770099403116
                invalid uniqueId:
                  summary: Invalid uniqueId format
                  value:
                    success: false
                    error: VALIDATION_ERROR
                    message: >-
                      Invalid 'uniqueId' format. Instagram unique ID must be
                      between 1 and 31 characters.
                    timestamp: 1770099403116
        '429':
          description: Exceeded quota or rate limit.
          content:
            application/json:
              schema:
                type: object
                title: QuotaErrorResponse
                description: Quota error response format.
                properties:
                  success:
                    const: false
                  error:
                    type: string
                  message:
                    type: string
                  remainingPlanCredit:
                    type: number
                required:
                  - success
                  - error
                  - message
                  - remainingPlanCredit
              examples:
                rate limit:
                  summary: Rate limit exceeded
                  value:
                    success: false
                    error: RATE_LIMIT_EXCEEDED
                    message: Too many requests. Please try again later.
                quota exceeded:
                  summary: Credit quota exceeded
                  value:
                    success: false
                    error: QUOTA_EXCEEDED
                    message: Not enough credits to complete this request.
      security:
        - ApiKeyAuth: []
      servers:
        - url: https://apiv3.creatordb.app
          description: Production Environment (CreatorDB Headless API V3)
      x-codeSamples:
        - lang: bash
          label: cURL
          source: >
            curl -X POST "https://apiv3.creatordb.app/instagram/content-detail"
            \
              -H "Content-Type: application/json" \
              -H "api-key: <YOUR_API-KEY_HERE>" \
              -d '{ "uniqueId": "cristiano", "fields": { "recentReels": 5 } }'
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: The valid CreatorDB API key for authentication.
      name: api-key
      in: header

````