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

# Reels using Song

> Get reels using a song

<Note>
  💳 **1 credit** per request
</Note>


## OpenAPI

````yaml GET /v1/scrape/instagram/reels-by-song
openapi: 3.1.0
info:
  title: SociaVault API
  version: 1.0.0
  description: >-
    # SociaVault API Documentation


    The SociaVault API provides comprehensive access to social media data
    extraction across multiple platforms.


    ## Features


    - **Multi-Platform Support**: TikTok, Instagram, YouTube, Facebook, Twitter,
    Reddit, Threads, and more

    - **Credit-Based System**: Pay-as-you-go pricing with transparent credit
    costs

    - **High Performance**: Fast, reliable data extraction

    - **Comprehensive Data**: Detailed user profiles, videos, posts, comments,
    and analytics


    ## Authentication


    All API requests require authentication using an API key in the `X-API-Key`
    header:


    ```bash

    X-API-Key: sk_live_your_api_key_here

    ```


    Get your API key from the [SociaVault
    Dashboard](https://sociavault.com/dashboard).


    ## Credits


    Each endpoint consumes credits based on data complexity:

    - Simple requests (profiles): 1 credit

    - Complex requests (demographics): 20+ credits

    - Paginated requests: Credits per page


    Check your credit balance in the dashboard or via the API.


    ## Support


    - **Documentation**: https://docs.sociavault.com

    - **Email**: support@sociavault.com

    - **Discord**: https://discord.gg/sociavault
  contact:
    name: SociaVault Support
    email: support@sociavault.com
    url: https://sociavault.com/support
  license:
    name: Commercial
    url: https://sociavault.com/terms
servers:
  - url: https://api.sociavault.com
    description: Production API
security:
  - ApiKeyAuth: []
tags:
  - name: account
    description: Account management and credit balance
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/account
  - name: tiktok
    description: Scrape TikTok profiles, videos, and more
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/tiktok
  - name: tiktok-shop
    description: Everything about TikTok Shop
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/tiktok-shop
  - name: instagram
    description: Gets Instagram profiles, posts, and reels
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/instagram
  - name: youtube
    description: Scrape YouTube channels, videos, and more
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/youtube
  - name: linkedin
    description: Scrape LinkedIn
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/linkedin
  - name: facebook
    description: Get public Facebook profiles and posts
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/facebook
  - name: facebookAdLibrary
    description: Scrapes the Facebook (Meta) Ad Library
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/facebookAdLibrary
  - name: facebookMarketplace
    description: Search Facebook Marketplace and pull full listing details
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/facebookMarketplace
  - name: googleAdLibrary
    description: >-
      Scrape the Google Ad Transparency Library. *This only gets the public ads.
      Some ads you need to log in for and sadly we can't get those. Also, since
      there are so many variations, the return types might not all be 100% the
      same.
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/googleAdLibrary
  - name: linkedinAdLibrary
    description: Search the LinkedIn Ad Library
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/linkedinAdLibrary
  - name: twitter
    description: Get Twitter profiles, tweets, followers and more
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/twitter
  - name: reddit
    description: Scrape Reddit posts and comments
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/reddit
  - name: threads
    description: Get Threads posts
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/threads
  - name: google
    description: Scrape Google search results
    externalDocs:
      description: Learn more
      url: https://docs.sociavault.com/platforms/google
paths:
  /v1/scrape/instagram/reels-by-song:
    get:
      tags:
        - instagram
      summary: Reels using Song
      description: Get reels using a song
      operationId: instagram_Reels_using_Song
      parameters:
        - name: audio_id
          in: query
          description: Audio ID
          required: true
          schema:
            type: string
            example: '844716519067330'
        - name: max_id
          in: query
          description: >-
            How you paginate the results. Pass the max_id from the previous
            response to get the next set of reels.
          required: false
          schema:
            type: string
            example: GvYhgPbWtJ....
      responses:
        '200':
          description: >-
            Successful response


            **Key Response Fields:**

            - `items[0].media.pk`: Unique reel ID

            - `items[0].media.id`: Reel ID combined with the author's user ID

            - `items[0].media.code`: Reel shortcode (used in the URL as
            `instagram.com/reel/{code}`)

            - `items[0].media.taken_at`: Unix timestamp of when the reel was
            posted

            - `items[0].media.caption.text`: Reel caption text

            - `items[0].media.caption.user.username`: Username of the reel
            creator

            - `items[0].media.caption.user.is_verified`: Whether the reel
            creator is verified

            - `items[0].media.caption.user.profile_pic_url`: Creator's profile
            picture URL

            - `max_id`: Pagination cursor — pass as `max_id` to get the next set
            of reels
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        media:
                          type: object
                          properties:
                            pk:
                              type: string
                              example: '3652360178415977960'
                            id:
                              type: string
                              example: '3652360178415977960_4396457'
                            fbid:
                              type: string
                              example: '18034424375376227'
                            device_timestamp:
                              type: integer
                              example: 134142505793774
                            caption_is_edited:
                              type: boolean
                              example: true
                            strong_id__:
                              type: string
                              example: '3652360178415977960_4396457'
                            deleted_reason:
                              type: integer
                              example: 0
                            has_shared_to_fb:
                              type: integer
                              example: 0
                            has_delayed_metadata:
                              type: boolean
                              example: false
                            mezql_token:
                              type: string
                              example: 0:OZQlIevIQU+5pG5dXNMsSw==
                            share_count_disabled:
                              type: boolean
                              example: false
                            should_request_ads:
                              type: boolean
                              example: false
                            is_reshare_of_text_post_app_media_in_ig:
                              type: boolean
                              example: false
                            integrity_review_decision:
                              type: string
                              example: pending
                            client_cache_key:
                              type: string
                              example: MzY1MjM2MDE3ODQxNTk3Nzk2MA==.3
                            filter_type:
                              type: integer
                              example: 0
                            is_visual_reply_commenter_notice_enabled:
                              type: boolean
                              example: true
                            comment_threading_enabled:
                              type: boolean
                              example: true
                            like_and_view_counts_disabled:
                              type: boolean
                              example: false
                            has_privately_liked:
                              type: boolean
                              example: false
                            is_unified_video:
                              type: boolean
                              example: false
                            is_post_live_clips_media:
                              type: boolean
                              example: false
                            commerciality_status:
                              type: string
                              example: not_commercial
                            is_quiet_post:
                              type: boolean
                              example: false
                            subtype_name_for_REST__:
                              type: string
                              example: XDTClipsMedia
                            taken_at:
                              type: integer
                              example: 1749615300
                            has_tagged_users:
                              type: boolean
                              example: true
                            usertags:
                              type: object
                              properties:
                                in:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      position:
                                        type: array
                                        items:
                                          type: integer
                                          example: 0
                                      user:
                                        type: object
                                        properties:
                                          pk:
                                            type: string
                                            example: '811350'
                                          pk_id:
                                            type: string
                                            example: '811350'
                                          id:
                                            type: string
                                            example: '811350'
                                          full_name:
                                            type: string
                                            example: John Paul Dizon
                                          is_private:
                                            type: boolean
                                            example: false
                                          strong_id__:
                                            type: string
                                            example: '811350'
                                          username:
                                            type: string
                                            example: john_paul_dizon
                                          is_verified:
                                            type: boolean
                                            example: true
                                          profile_pic_id:
                                            type: string
                                            example: '3174559232146314169_811350'
                                          profile_pic_url:
                                            type: string
                                            example: >-
                                              https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/368674833_604213368557202_5526712452728694884_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=106&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=jaUs5Rk4FbQQ7kNvwHTFk_4&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfP03wtYo0WVMIsIhWP-dzIQDbQMwoXhiylXEejlWeFKuA&oe=686C9D56&_nc_sid=594fa5
                                        required:
                                          - pk
                                          - pk_id
                                          - id
                                          - full_name
                                          - is_private
                                          - strong_id__
                                          - username
                                          - is_verified
                                          - profile_pic_id
                                          - profile_pic_url
                                    required:
                                      - position
                                      - user
                              required:
                                - in
                            photo_of_you:
                              type: boolean
                              example: false
                            can_see_insights_as_brand:
                              type: boolean
                              example: false
                            media_type:
                              type: integer
                              example: 2
                            code:
                              type: string
                              example: DKvyjsyREXo
                            caption:
                              type: object
                              properties:
                                bit_flags:
                                  type: integer
                                  example: 0
                                created_at:
                                  type: integer
                                  example: 1749616067
                                created_at_utc:
                                  type: integer
                                  example: 1749616067
                                did_report_as_spam:
                                  type: boolean
                                  example: false
                                is_ranked_comment:
                                  type: boolean
                                  example: false
                                pk:
                                  type: string
                                  example: '18034425596376227'
                                share_enabled:
                                  type: boolean
                                  example: false
                                content_type:
                                  type: string
                                  example: comment
                                media_id:
                                  type: string
                                  example: '3652360178415977960'
                                status:
                                  type: string
                                  example: Active
                                type:
                                  type: integer
                                  example: 1
                                user_id:
                                  type: string
                                  example: '4396457'
                                strong_id__:
                                  type: string
                                  example: '18034425596376227'
                                text:
                                  type: string
                                  example: >-
                                    Here for the soft wins and good energy
                                    💃🏿😊


                                    🎥 @jkvzxc 

                                    @pongniu 

                                    @eusebiobryanl_ 

                                    @john_paul_dizon 

                                    @bumrecones

                                    @itsshowtimena
                                user:
                                  type: object
                                  properties:
                                    pk:
                                      type: string
                                      example: '4396457'
                                    pk_id:
                                      type: string
                                      example: '4396457'
                                    id:
                                      type: string
                                      example: '4396457'
                                    full_name:
                                      type: string
                                      example: Winwyn Marquez
                                    is_private:
                                      type: boolean
                                      example: false
                                    is_unpublished:
                                      type: boolean
                                      example: false
                                    strong_id__:
                                      type: string
                                      example: '4396457'
                                    fbid_v2:
                                      type: string
                                      example: '17841401333710068'
                                    username:
                                      type: string
                                      example: teresitassen
                                    is_verified:
                                      type: boolean
                                      example: true
                                    profile_pic_id:
                                      type: string
                                      example: '3580881894760116061_4396457'
                                    profile_pic_url:
                                      type: string
                                      example: >-
                                        https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5
                                  required:
                                    - pk
                                    - pk_id
                                    - id
                                    - full_name
                                    - is_private
                                    - is_unpublished
                                    - strong_id__
                                    - fbid_v2
                                    - username
                                    - is_verified
                                    - profile_pic_id
                                    - profile_pic_url
                                is_covered:
                                  type: boolean
                                  example: false
                                private_reply_status:
                                  type: integer
                                  example: 0
                              required:
                                - bit_flags
                                - created_at
                                - created_at_utc
                                - did_report_as_spam
                                - is_ranked_comment
                                - pk
                                - share_enabled
                                - content_type
                                - media_id
                                - status
                                - type
                                - user_id
                                - strong_id__
                                - text
                                - user
                                - is_covered
                                - private_reply_status
                            sharing_friction_info:
                              type: object
                              properties:
                                bloks_app_url:
                                  type: 'null'
                                should_have_sharing_friction:
                                  type: boolean
                                  example: false
                                sharing_friction_payload:
                                  type: 'null'
                              required:
                                - should_have_sharing_friction
                            timeline_pinned_user_ids:
                              type: array
                              items: {}
                            play_count:
                              type: integer
                              example: 66233
                            has_views_fetching:
                              type: boolean
                              example: true
                            ig_play_count:
                              type: integer
                              example: 66233
                            creator_viewer_insights:
                              type: array
                              items: {}
                            display_uri:
                              type: string
                              example: >-
                                https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-15/506027249_18505647922044458_4316725904949757663_n.jpg?stp=c0.210.540.540a_dst-jpg_e15_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=102&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=ap3WVBkNwX8Q7kNvwHXMeqb&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOpCfJN_jGvfDUt1TNR0rE9HP36VlhfoMKOyzQjczQg2w&oe=686C93F3&_nc_sid=594fa5
                            fb_user_tags:
                              type: object
                              properties:
                                in:
                                  type: array
                                  items: {}
                              required:
                                - in
                            coauthor_producers:
                              type: array
                              items:
                                type: object
                                properties:
                                  pk:
                                    type: string
                                    example: '196370659'
                                  pk_id:
                                    type: string
                                    example: '196370659'
                                  id:
                                    type: string
                                    example: '196370659'
                                  full_name:
                                    type: string
                                    example: Pong Niu
                                  is_private:
                                    type: boolean
                                    example: false
                                  strong_id__:
                                    type: string
                                    example: '196370659'
                                  username:
                                    type: string
                                    example: pongniu
                                  is_verified:
                                    type: boolean
                                    example: false
                                  profile_pic_url:
                                    type: string
                                    example: >-
                                      https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/10576084_1447932498816448_1340404624_a.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=104&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=xATjiv7bWfsQ7kNvwFcvrIS&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOjvPgi4sewnbNy6GQd_AH9sZPtQt8LSbvVo9Z1kK4TwQ&oe=686CA826&_nc_sid=594fa5
                                required:
                                  - pk
                                  - pk_id
                                  - id
                                  - full_name
                                  - is_private
                                  - strong_id__
                                  - username
                                  - is_verified
                                  - profile_pic_url
                            coauthor_producer_can_see_organic_insights:
                              type: boolean
                              example: false
                            invited_coauthor_producers:
                              type: array
                              items: {}
                            is_in_profile_grid:
                              type: boolean
                              example: false
                            profile_grid_control_enabled:
                              type: boolean
                              example: false
                            media_cropping_info:
                              type: object
                              properties:
                                square_crop:
                                  type: object
                                  properties:
                                    crop_left:
                                      type: integer
                                      example: 0
                                    crop_right:
                                      type: integer
                                      example: 1
                                    crop_top:
                                      type: number
                                      example: 0.023958333
                                    crop_bottom:
                                      type: number
                                      example: 0.5864583
                                  required:
                                    - crop_left
                                    - crop_right
                                    - crop_top
                                    - crop_bottom
                              required:
                                - square_crop
                            user:
                              type: object
                              properties:
                                fbid_v2:
                                  type: string
                                  example: '17841401333710068'
                                feed_post_reshare_disabled:
                                  type: boolean
                                  example: true
                                full_name:
                                  type: string
                                  example: Winwyn Marquez
                                id:
                                  type: string
                                  example: '4396457'
                                is_private:
                                  type: boolean
                                  example: false
                                is_unpublished:
                                  type: boolean
                                  example: false
                                pk:
                                  type: string
                                  example: '4396457'
                                pk_id:
                                  type: string
                                  example: '4396457'
                                show_account_transparency_details:
                                  type: boolean
                                  example: true
                                strong_id__:
                                  type: string
                                  example: '4396457'
                                third_party_downloads_enabled:
                                  type: integer
                                  example: 2
                                account_type:
                                  type: integer
                                  example: 3
                                account_badges:
                                  type: array
                                  items: {}
                                fan_club_info:
                                  type: object
                                  properties:
                                    autosave_to_exclusive_highlight:
                                      type: 'null'
                                    connected_member_count:
                                      type: 'null'
                                    fan_club_id:
                                      type: 'null'
                                    fan_club_name:
                                      type: 'null'
                                    has_created_ssc:
                                      type: 'null'
                                    has_enough_subscribers_for_ssc:
                                      type: 'null'
                                    is_fan_club_gifting_eligible:
                                      type: 'null'
                                    is_fan_club_referral_eligible:
                                      type: 'null'
                                    is_free_trial_eligible:
                                      type: 'null'
                                    largest_public_bc_id:
                                      type: 'null'
                                    subscriber_count:
                                      type: 'null'
                                    fan_consideration_page_revamp_eligiblity:
                                      type: 'null'
                                has_anonymous_profile_picture:
                                  type: boolean
                                  example: false
                                hd_profile_pic_url_info:
                                  type: object
                                  properties:
                                    height:
                                      type: integer
                                      example: 1080
                                    url:
                                      type: string
                                      example: >-
                                        https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOx78ar_6q1VUnSPiuM632lWFwsOPiRMxQPom23mZLWIw&oe=686CB398&_nc_sid=594fa5
                                    width:
                                      type: integer
                                      example: 1080
                                  required:
                                    - height
                                    - url
                                    - width
                                hd_profile_pic_versions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      height:
                                        type: integer
                                        example: 320
                                      url:
                                        type: string
                                        example: >-
                                          https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfNqWrF8IYOBzrpUMQwgzu9Mid02jqOqUsO0jakyqrLeMA&oe=686CB398&_nc_sid=594fa5
                                      width:
                                        type: integer
                                        example: 320
                                    required:
                                      - height
                                      - url
                                      - width
                                is_verified:
                                  type: boolean
                                  example: true
                                profile_pic_id:
                                  type: string
                                  example: '3580881894760116061_4396457'
                                profile_pic_url:
                                  type: string
                                  example: >-
                                    https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5
                                transparency_product_enabled:
                                  type: boolean
                                  example: false
                                username:
                                  type: string
                                  example: teresitassen
                                is_embeds_disabled:
                                  type: boolean
                                  example: false
                                eligible_for_text_app_activation_badge:
                                  type: boolean
                                  example: false
                              required:
                                - fbid_v2
                                - feed_post_reshare_disabled
                                - full_name
                                - id
                                - is_private
                                - is_unpublished
                                - pk
                                - pk_id
                                - show_account_transparency_details
                                - strong_id__
                                - third_party_downloads_enabled
                                - account_type
                                - account_badges
                                - fan_club_info
                                - has_anonymous_profile_picture
                                - hd_profile_pic_url_info
                                - hd_profile_pic_versions
                                - is_verified
                                - profile_pic_id
                                - profile_pic_url
                                - transparency_product_enabled
                                - username
                                - is_embeds_disabled
                                - eligible_for_text_app_activation_badge
                            owner:
                              type: object
                              properties:
                                fbid_v2:
                                  type: string
                                  example: '17841401333710068'
                                feed_post_reshare_disabled:
                                  type: boolean
                                  example: true
                                full_name:
                                  type: string
                                  example: Winwyn Marquez
                                id:
                                  type: string
                                  example: '4396457'
                                is_private:
                                  type: boolean
                                  example: false
                                is_unpublished:
                                  type: boolean
                                  example: false
                                pk:
                                  type: string
                                  example: '4396457'
                                pk_id:
                                  type: string
                                  example: '4396457'
                                show_account_transparency_details:
                                  type: boolean
                                  example: true
                                strong_id__:
                                  type: string
                                  example: '4396457'
                                third_party_downloads_enabled:
                                  type: integer
                                  example: 2
                                account_type:
                                  type: integer
                                  example: 3
                                account_badges:
                                  type: array
                                  items: {}
                                fan_club_info:
                                  type: object
                                  properties:
                                    autosave_to_exclusive_highlight:
                                      type: 'null'
                                    connected_member_count:
                                      type: 'null'
                                    fan_club_id:
                                      type: 'null'
                                    fan_club_name:
                                      type: 'null'
                                    has_created_ssc:
                                      type: 'null'
                                    has_enough_subscribers_for_ssc:
                                      type: 'null'
                                    is_fan_club_gifting_eligible:
                                      type: 'null'
                                    is_fan_club_referral_eligible:
                                      type: 'null'
                                    is_free_trial_eligible:
                                      type: 'null'
                                    largest_public_bc_id:
                                      type: 'null'
                                    subscriber_count:
                                      type: 'null'
                                    fan_consideration_page_revamp_eligiblity:
                                      type: 'null'
                                has_anonymous_profile_picture:
                                  type: boolean
                                  example: false
                                hd_profile_pic_url_info:
                                  type: object
                                  properties:
                                    height:
                                      type: integer
                                      example: 1080
                                    url:
                                      type: string
                                      example: >-
                                        https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOx78ar_6q1VUnSPiuM632lWFwsOPiRMxQPom23mZLWIw&oe=686CB398&_nc_sid=594fa5
                                    width:
                                      type: integer
                                      example: 1080
                                  required:
                                    - height
                                    - url
                                    - width
                                hd_profile_pic_versions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      height:
                                        type: integer
                                        example: 320
                                      url:
                                        type: string
                                        example: >-
                                          https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfNqWrF8IYOBzrpUMQwgzu9Mid02jqOqUsO0jakyqrLeMA&oe=686CB398&_nc_sid=594fa5
                                      width:
                                        type: integer
                                        example: 320
                                    required:
                                      - height
                                      - url
                                      - width
                                is_verified:
                                  type: boolean
                                  example: true
                                profile_pic_id:
                                  type: string
                                  example: '3580881894760116061_4396457'
                                profile_pic_url:
                                  type: string
                                  example: >-
                                    https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5
                                transparency_product_enabled:
                                  type: boolean
                                  example: false
                                username:
                                  type: string
                                  example: teresitassen
                                is_embeds_disabled:
                                  type: boolean
                                  example: false
                                eligible_for_text_app_activation_badge:
                                  type: boolean
                                  example: false
                              required:
                                - fbid_v2
                                - feed_post_reshare_disabled
                                - full_name
                                - id
                                - is_private
                                - is_unpublished
                                - pk
                                - pk_id
                                - show_account_transparency_details
                                - strong_id__
                                - third_party_downloads_enabled
                                - account_type
                                - account_badges
                                - fan_club_info
                                - has_anonymous_profile_picture
                                - hd_profile_pic_url_info
                                - hd_profile_pic_versions
                                - is_verified
                                - profile_pic_id
                                - profile_pic_url
                                - transparency_product_enabled
                                - username
                                - is_embeds_disabled
                                - eligible_for_text_app_activation_badge
                            image_versions2:
                              type: object
                              properties:
                                additional_candidates:
                                  type: object
                                  properties:
                                    first_frame:
                                      type: object
                                      properties:
                                        estimated_scans_sizes:
                                          type: array
                                          items: {}
                                        height:
                                          type: integer
                                          example: 1136
                                        scans_profile:
                                          type: 'null'
                                        url:
                                          type: string
                                          example: >-
                                            https://scontent.cdninstagram.com/v/t51.71878-15/503032859_4019193691701439_3814288192587076541_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=109&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjY0MHgxMTM2LnNkciJ9&_nc_ohc=bD4KByC46XYQ7kNvwFu5j6w&_nc_oc=AdlbpRHz4r3G8O0tx-ADaogWnn5lPc4wpd6PWqFW4VrW2dvDmg-W1SGfdw4SQ6OOV9A&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&oh=00_AfP_5oWGZbv2jq25WRcZqVum8jp_e1UNZ5Iy-lp8WxEPpA&oe=686C9F27
                                        width:
                                          type: integer
                                          example: 640
                                      required:
                                        - estimated_scans_sizes
                                        - height
                                        - url
                                        - width
                                    igtv_first_frame:
                                      type: object
                                      properties:
                                        estimated_scans_sizes:
                                          type: array
                                          items: {}
                                        height:
                                          type: integer
                                          example: 1136
                                        scans_profile:
                                          type: 'null'
                                        url:
                                          type: string
                                          example: >-
                                            https://scontent.cdninstagram.com/v/t51.71878-15/503032859_4019193691701439_3814288192587076541_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=109&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjY0MHgxMTM2LnNkciJ9&_nc_ohc=bD4KByC46XYQ7kNvwFu5j6w&_nc_oc=AdlbpRHz4r3G8O0tx-ADaogWnn5lPc4wpd6PWqFW4VrW2dvDmg-W1SGfdw4SQ6OOV9A&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&oh=00_AfP_5oWGZbv2jq25WRcZqVum8jp_e1UNZ5Iy-lp8WxEPpA&oe=686C9F27
                                        width:
                                          type: integer
                                          example: 640
                                      required:
                                        - estimated_scans_sizes
                                        - height
                                        - url
                                        - width
                                    smart_frame:
                                      type: 'null'
                                  required:
                                    - first_frame
                                    - igtv_first_frame
                                animated_thumbnail_spritesheet_info_candidates:
                                  type: object
                                  properties:
                                    default:
                                      type: object
                                      properties:
                                        file_size_kb:
                                          type: integer
                                          example: 397
                                        max_thumbnails_per_sprite:
                                          type: integer
                                          example: 18
                                        rendered_width:
                                          type: integer
                                          example: 96
                                        sprite_height:
                                          type: integer
                                          example: 1920
                                        sprite_urls:
                                          type: array
                                          items:
                                            type: string
                                            example: >-
                                              https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-15/503812021_1050206773391122_1848922271260643876_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=110&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=eHvtTT81ycYQ7kNvwGiud4C&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfN83w9k3ZSHF6_M2kVMy0YEfjDidT_Aqf65FvxKrR4-Ag&oe=686CA4A6&_nc_sid=594fa5
                                        sprite_width:
                                          type: integer
                                          example: 2160
                                        thumbnail_duration:
                                          type: number
                                          example: 0.06666666666666667
                                        thumbnail_height:
                                          type: integer
                                          example: 640
                                        thumbnail_width:
                                          type: integer
                                          example: 360
                                        thumbnails_per_row:
                                          type: integer
                                          example: 6
                                        total_thumbnail_num_per_sprite:
                                          type: integer
                                          example: 18
                                        video_length:
                                          type: number
                                          example: 26.574
                                      required:
                                        - file_size_kb
                                        - max_thumbnails_per_sprite
                                        - rendered_width
                                        - sprite_height
                                        - sprite_urls
                                        - sprite_width
                                        - thumbnail_duration
                                        - thumbnail_height
                                        - thumbnail_width
                                        - thumbnails_per_row
                                        - total_thumbnail_num_per_sprite
                                        - video_length
                                  required:
                                    - default
                                candidates:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      estimated_scans_sizes:
                                        type: array
                                        items: {}
                                      height:
                                        type: integer
                                        example: 960
                                      scans_profile:
                                        type: 'null'
                                      url:
                                        type: string
                                        example: >-
                                          https://scontent.cdninstagram.com/v/t51.75761-15/506027249_18505647922044458_4316725904949757663_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ig_cache_key=MzY1MjM2MDE3ODQxNTk3Nzk2MA%3D%3D.3-ccb1-7&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjU0MHg5NjAuc2RyIn0%3D&_nc_ohc=QnCwhY33N3UQ7kNvwGa9OC5&_nc_oc=Adlzzdwf5esxB17JY8vRM9ozFfqRO_WsqstrElxdqQPGMNF3YTNOZeElC85znMLL4aU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&oh=00_AfOppAjm4-YHcOa5JAHfaq3nOOdbFaVIL-Qx_1dn-wEQkg&oe=686CAD4C
                                      width:
                                        type: integer
                                        example: 540
                                    required:
                                      - estimated_scans_sizes
                                      - height
                                      - url
                                      - width
                                scrubber_spritesheet_info_candidates:
                                  type: object
                                  properties:
                                    default:
                                      type: object
                                      properties:
                                        file_size_kb:
                                          type: integer
                                          example: 294
                                        max_thumbnails_per_sprite:
                                          type: integer
                                          example: 105
                                        rendered_width:
                                          type: integer
                                          example: 96
                                        sprite_height:
                                          type: integer
                                          example: 1246
                                        sprite_urls:
                                          type: array
                                          items:
                                            type: string
                                            example: >-
                                              https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-15/504275986_739918552051472_2110443255552546043_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=108&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=XezVX6ZLqDEQ7kNvwHjBVoG&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfO6bQTOZyaOyHqwhIr_TVv43UKBn7QhaV5fC9D--X9lmA&oe=686C9F52&_nc_sid=594fa5
                                        sprite_width:
                                          type: integer
                                          example: 1500
                                        thumbnail_duration:
                                          type: number
                                          example: 0.2530857142857143
                                        thumbnail_height:
                                          type: integer
                                          example: 178
                                        thumbnail_width:
                                          type: integer
                                          example: 100
                                        thumbnails_per_row:
                                          type: integer
                                          example: 15
                                        total_thumbnail_num_per_sprite:
                                          type: integer
                                          example: 105
                                        video_length:
                                          type: number
                                          example: 26.574
                                      required:
                                        - file_size_kb
                                        - max_thumbnails_per_sprite
                                        - rendered_width
                                        - sprite_height
                                        - sprite_urls
                                        - sprite_width
                                        - thumbnail_duration
                                        - thumbnail_height
                                        - thumbnail_width
                                        - thumbnails_per_row
                                        - total_thumbnail_num_per_sprite
                                        - video_length
                                  required:
                                    - default
                              required:
                                - additional_candidates
                                - animated_thumbnail_spritesheet_info_candidates
                                - candidates
                                - scrubber_spritesheet_info_candidates
                            original_width:
                              type: integer
                              example: 1080
                            original_height:
                              type: integer
                              example: 1920
                            is_artist_pick:
                              type: boolean
                              example: false
                            media_reposter_bottomsheet_enabled:
                              type: boolean
                              example: false
                            enable_media_notes_production:
                              type: boolean
                              example: false
                            product_type:
                              type: string
                              example: clips
                            is_paid_partnership:
                              type: boolean
                              example: false
                            inventory_source:
                              type: string
                              example: recommended_clips_chaining_model
                            music_metadata:
                              type: 'null'
                            organic_tracking_token:
                              type: string
                              example: >-
                                eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiODM3ZjkyZGZjYjJjNDJiODg1NzZmOWEyOGFmNGU4NWIzNjUyMzYwMTc4NDE1OTc3OTYwIn0sInNpZ25hdHVyZSI6IiJ9
                            is_third_party_downloads_eligible:
                              type: boolean
                              example: false
                            ig_media_sharing_disabled:
                              type: boolean
                              example: false
                            are_remixes_crosspostable:
                              type: boolean
                              example: true
                            boost_unavailable_identifier:
                              type: 'null'
                            boost_unavailable_reason:
                              type: 'null'
                            boost_unavailable_reason_v2:
                              type: array
                              items: {}
                            subscribe_cta_visible:
                              type: boolean
                              example: false
                            creative_config:
                              type: object
                              properties:
                                capture_type:
                                  type: string
                                  example: clips_v2
                                face_effect_id:
                                  type: 'null'
                                attribution_user:
                                  type: 'null'
                                creation_tool_info:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      camera_tool:
                                        type: integer
                                        example: 179
                                      duration_selector_seconds:
                                        type: integer
                                        example: 0
                                      speed_selector:
                                        type: integer
                                        example: 0
                                      color_filters:
                                        type: string
                                        example: ''
                                      appearance_effect:
                                        type: integer
                                        example: 0
                                      timer_selector_seconds:
                                        type: integer
                                        example: 0
                                      magic_cut_start_time:
                                        type: integer
                                        example: 0
                                      magic_cut_end_time:
                                        type: integer
                                        example: 0
                                    required:
                                      - camera_tool
                                      - duration_selector_seconds
                                      - speed_selector
                                      - color_filters
                                      - appearance_effect
                                      - timer_selector_seconds
                                      - magic_cut_start_time
                                      - magic_cut_end_time
                                effect_configs:
                                  type: 'null'
                                effect_preview:
                                  type: 'null'
                                gen_ai_tool_info:
                                  type: 'null'
                              required:
                                - capture_type
                                - creation_tool_info
                            is_cutout_sticker_allowed:
                              type: boolean
                              example: false
                            cutout_sticker_info:
                              type: array
                              items: {}
                            recommendation_data:
                              type: string
                              example: >-
                                {"recommender_type_token":
                                "AYa4SjjQKvHQjr6nprej3MjF899H5WWMaENCRAghF0SS2NejyVVOtTLHePplEIiQxxNI_7ZHdDzEWw9e"}
                            gen_ai_detection_method:
                              type: object
                              properties:
                                detection_method:
                                  type: string
                                  example: NONE
                              required:
                                - detection_method
                            fb_aggregated_like_count:
                              type: integer
                              example: 0
                            fb_aggregated_comment_count:
                              type: integer
                              example: 0
                            has_high_risk_gen_ai_inform_treatment:
                              type: boolean
                              example: false
                            open_carousel_show_follow_button:
                              type: boolean
                              example: false
                            is_tagged_media_shared_to_viewer_profile_grid:
                              type: boolean
                              example: false
                            should_show_author_pog_for_tagged_media_shared_to_profile_grid:
                              type: boolean
                              example: false
                            is_social_ufi_disabled:
                              type: boolean
                              example: false
                            is_eligible_for_meta_ai_share:
                              type: boolean
                              example: true
                            meta_ai_suggested_prompts:
                              type: array
                              items: {}
                            can_reply:
                              type: boolean
                              example: false
                            floating_context_items:
                              type: array
                              items: {}
                            is_eligible_content_for_post_roll_ad:
                              type: boolean
                              example: false
                            meta_ai_contextual_voice_data:
                              type: object
                              properties:
                                is_eligible:
                                  type: boolean
                                  example: false
                                eligibility_result_reason:
                                  type: string
                                  example: INELIGIBLE_GK
                              required:
                                - is_eligible
                                - eligibility_result_reason
                            related_ads_pivots_media_info:
                              type: string
                              example: NOT_FEED_TIMELINE_REQUEST
                            is_open_to_public_submission:
                              type: boolean
                              example: false
                            hidden_likes_string_variant:
                              type: integer
                              example: -1
                            can_view_more_preview_comments:
                              type: boolean
                              example: false
                            commenting_disabled_for_viewer:
                              type: boolean
                              example: true
                            preview_comments:
                              type: array
                              items: {}
                            comment_count:
                              type: integer
                              example: 59
                            hide_view_all_comment_entrypoint:
                              type: boolean
                              example: false
                            is_comments_gif_composer_enabled:
                              type: boolean
                              example: false
                            comment_inform_treatment:
                              type: object
                              properties:
                                action_type:
                                  type: 'null'
                                should_have_inform_treatment:
                                  type: boolean
                                  example: false
                                text:
                                  type: string
                                  example: ''
                                url:
                                  type: 'null'
                              required:
                                - should_have_inform_treatment
                                - text
                            has_more_comments:
                              type: boolean
                              example: true
                            max_num_visible_preview_comments:
                              type: integer
                              example: 2
                            explore_hide_comments:
                              type: boolean
                              example: false
                            has_liked:
                              type: boolean
                              example: false
                            like_count:
                              type: integer
                              example: 4570
                            video_sticker_locales:
                              type: array
                              items: {}
                            is_dash_eligible:
                              type: integer
                              example: 1
                            number_of_qualities:
                              type: integer
                              example: 7
                            video_versions:
                              type: array
                              items:
                                type: object
                                properties:
                                  bandwidth:
                                    type: 'null'
                                  height:
                                    type: integer
                                    example: 853
                                  type:
                                    type: integer
                                    example: 101
                                  url:
                                    type: string
                                    example: >-
                                      https://instagram.fphl1-1.fna.fbcdn.net/o1/v/t2/f2/m86/AQPCfwFHUv_nkm8iil7vMnobXrv00Yq3uLkI35vCgeX5JJsOsGksgoxytbRyWiEyb-7PbwtQggvSm8ziTaRYPzYwOPBO5kj66lvcKrM.mp4?_nc_cat=107&_nc_oc=Adl-0EWN7c0dXUe_2SF6CfU1v63z53j4m7liFlgmy7iCNwbMG9UxCXY2Wr_u4EDTalI&_nc_sid=5e9851&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_ohc=O0IlFbsT6tMQ7kNvwHkmeu4&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTkzMTA1NTExNzcxOTcxNSwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjI2LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=5662edb71a201997&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8xODQxNUJBMjYzNTFEQUFFREQwQzdEQ0RBOEZGNUE5Ql92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HQ2h4S2g2anFpQ09uM29DQUZpdnFwNlVwVjBlYnFfRUFBQUYVAgLIARIAKAAYABsCiAd1c2Vfb2lsATEScHJvZ3Jlc3NpdmVfcmVjaXBlATEVAAAmxuKq5ZmS7gYVAigCQzMsF0A6hysCDEm6GBJkYXNoX2Jhc2VsaW5lXzFfdjERAHX-B2XmnQEA&_nc_zt=28&oh=00_AfNbwLuJ8F0Np7nwP-pUl5l1Uw-xetveBxE7u70XbdxkVQ&oe=6868B6A4
                                  width:
                                    type: integer
                                    example: 480
                                required:
                                  - height
                                  - type
                                  - url
                                  - width
                            video_duration:
                              type: number
                              example: 26.574
                            has_audio:
                              type: boolean
                              example: true
                            clips_tab_pinned_user_ids:
                              type: array
                              items: {}
                            clips_metadata:
                              type: object
                              properties:
                                clips_creation_entry_point:
                                  type: string
                                  example: clips
                                featured_label:
                                  type: 'null'
                                is_public_chat_welcome_video:
                                  type: boolean
                                  example: false
                                professional_clips_upsell_type:
                                  type: integer
                                  example: 0
                                show_tips:
                                  type: 'null'
                                achievements_info:
                                  type: object
                                  properties:
                                    num_earned_achievements:
                                      type: 'null'
                                    show_achievements:
                                      type: boolean
                                      example: false
                                  required:
                                    - show_achievements
                                additional_audio_info:
                                  type: object
                                  properties:
                                    additional_audio_username:
                                      type: 'null'
                                    audio_reattribution_info:
                                      type: object
                                      properties:
                                        should_allow_restore:
                                          type: boolean
                                          example: false
                                      required:
                                        - should_allow_restore
                                  required:
                                    - audio_reattribution_info
                                asset_recommendation_info:
                                  type: 'null'
                                audio_ranking_info:
                                  type: object
                                  properties:
                                    best_audio_cluster_id:
                                      type: string
                                      example: '1663799207810767'
                                  required:
                                    - best_audio_cluster_id
                                audio_type:
                                  type: string
                                  example: original_sounds
                                branded_content_tag_info:
                                  type: object
                                  properties:
                                    can_add_tag:
                                      type: boolean
                                      example: false
                                  required:
                                    - can_add_tag
                                breaking_content_info:
                                  type: 'null'
                                breaking_creator_info:
                                  type: 'null'
                                challenge_info:
                                  type: 'null'
                                content_appreciation_info:
                                  type: object
                                  properties:
                                    enabled:
                                      type: boolean
                                      example: false
                                    entry_point_container:
                                      type: 'null'
                                  required:
                                    - enabled
                                contextual_highlight_info:
                                  type: 'null'
                                cutout_sticker_info:
                                  type: array
                                  items: {}
                                disable_use_in_clips_client_cache:
                                  type: boolean
                                  example: false
                                external_media_info:
                                  type: 'null'
                                is_fan_club_promo_video:
                                  type: 'null'
                                is_shared_to_fb:
                                  type: boolean
                                  example: false
                                mashup_info:
                                  type: object
                                  properties:
                                    can_toggle_mashups_allowed:
                                      type: boolean
                                      example: false
                                    formatted_mashups_count:
                                      type: 'null'
                                    has_been_mashed_up:
                                      type: boolean
                                      example: false
                                    has_nonmimicable_additional_audio:
                                      type: boolean
                                      example: false
                                    is_creator_requesting_mashup:
                                      type: boolean
                                      example: false
                                    is_light_weight_check:
                                      type: boolean
                                      example: true
                                    is_light_weight_reuse_allowed_check:
                                      type: boolean
                                      example: false
                                    is_pivot_page_available:
                                      type: boolean
                                      example: false
                                    is_reuse_allowed:
                                      type: boolean
                                      example: false
                                    mashup_type:
                                      type: 'null'
                                    mashups_allowed:
                                      type: boolean
                                      example: false
                                    non_privacy_filtered_mashups_media_count:
                                      type: integer
                                      example: 0
                                    privacy_filtered_mashups_media_count:
                                      type: 'null'
                                    original_media:
                                      type: 'null'
                                  required:
                                    - can_toggle_mashups_allowed
                                    - has_been_mashed_up
                                    - has_nonmimicable_additional_audio
                                    - is_creator_requesting_mashup
                                    - is_light_weight_check
                                    - is_light_weight_reuse_allowed_check
                                    - is_pivot_page_available
                                    - is_reuse_allowed
                                    - mashups_allowed
                                    - non_privacy_filtered_mashups_media_count
                                merchandising_pill_info:
                                  type: 'null'
                                music_canonical_id:
                                  type: string
                                  example: '18345272542086608'
                                music_info:
                                  type: 'null'
                                nux_info:
                                  type: 'null'
                                original_sound_info:
                                  type: object
                                  properties:
                                    allow_creator_to_rename:
                                      type: boolean
                                      example: true
                                    audio_asset_id:
                                      type: string
                                      example: '1912666542883002'
                                    attributed_custom_audio_asset_id:
                                      type: 'null'
                                    can_remix_be_shared_to_fb:
                                      type: boolean
                                      example: false
                                    can_remix_be_shared_to_fb_expansion:
                                      type: boolean
                                      example: false
                                    dash_manifest:
                                      type: string
                                      example: >
                                        <?xml version="1.0" encoding="UTF-8"?>

                                        <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="PT26.563627S"><Period
                                        id="0"
                                        duration="PT26.563627S"><AdaptationSet
                                        id="0" contentType="audio"
                                        subsegmentStartsWithSAP="1"
                                        subsegmentAlignment="true"><Representation
                                        id="1103424701619288a" bandwidth="66791"
                                        codecs="mp4a.40.5" mimeType="audio/mp4"
                                        FBAvgBitrate="66791"
                                        audioSamplingRate="44100"
                                        FBDefaultQuality="1"><AudioChannelConfiguration
                                        schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011"
                                        value="2"/><BaseURL>https://instagram.fphl1-1.fna.fbcdn.net/o1/v/t16/f2/m69/AQOtGpde7mZKiCTEXl6eb2Wl7uXPBsRjlvd--FL7pX7u2V6vwnoMWU6RJzdeVPsLs6Q7dA0khcdlahrNfC9ef7No.mp4?strext=1&amp;_nc_cat=111&amp;_nc_oc=AdmcK5mo88B_k1yDSK3vkIMzqgpX0XFf1X-VcA2FS8yhHFgNUxZaH85E8hzOwHjYdGo&amp;_nc_sid=9ca052&amp;_nc_ht=instagram.fphl1-1.fna.fbcdn.net&amp;_nc_ohc=J17O0JJw5GcQ7kNvwFFZzY4&amp;efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbG5faGVhYWNfdmJyM19hdWRpbyIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6MjU2MjgxMDQwNTU4LCJjbGllbnRfbmFtZSI6InVua25vd24iLCJ4cHZfYXNzZXRfaWQiOjE5MzEwNTUxMTc3MTk3MTUsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoyNiwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&amp;ccb=17-1&amp;_nc_zt=28&amp;oh=00_AfPHfW6yvnafxzVyeW9d6b2Tm9aI1n0jdR9Tji8zw6WWOw&amp;oe=686CA95D</BaseURL><SegmentBase
                                        indexRange="824-1023"
                                        timescale="44100"><Initialization
                                        range="0-823"/></SegmentBase></Representation></AdaptationSet></Period></MPD>
                                    duration_in_ms:
                                      type: integer
                                      example: 26574
                                    formatted_clips_media_count:
                                      type: 'null'
                                    hide_remixing:
                                      type: boolean
                                      example: true
                                    is_audio_automatically_attributed:
                                      type: boolean
                                      example: false
                                    is_eligible_for_audio_effects:
                                      type: boolean
                                      example: true
                                    is_eligible_for_vinyl_sticker:
                                      type: boolean
                                      example: true
                                    is_explicit:
                                      type: boolean
                                      example: false
                                    is_original_audio_download_eligible:
                                      type: boolean
                                      example: false
                                    is_reuse_disabled:
                                      type: boolean
                                      example: false
                                    is_xpost_from_fb:
                                      type: boolean
                                      example: false
                                    music_canonical_id:
                                      type: 'null'
                                    oa_owner_is_music_artist:
                                      type: boolean
                                      example: false
                                    original_audio_subtype:
                                      type: string
                                      example: default
                                    original_audio_title:
                                      type: string
                                      example: Original audio
                                    original_media_id:
                                      type: string
                                      example: '3652360178415977960'
                                    progressive_download_url:
                                      type: string
                                      example: >-
                                        https://video.fphl1-1.fna.fbcdn.net/o1/v/t2/f2/m69/AQOvj_JNlbum0C-rV_2sKIhFG9yR_EHAm8vQ6rHvrTYRv5Hr7V59pOtew3UIhEBMrQHRlnGofvT5XSR-2eVPLpvE.mp4?strext=1&_nc_cat=104&_nc_oc=Adk8G57tAh1zcsdJJ8nbFsZGlXHnhpqBan05v2r9V10zTgpLuFxhKTDJxBoaSf-z1xo&_nc_sid=8bf8fe&_nc_ht=video.fphl1-1.fna.fbcdn.net&_nc_ohc=9PZmSgc-dnUQ7kNvwGSYDiE&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5BVURJT19PTkxZLi5DMy4wLnByb2dyZXNzaXZlX2F1ZGlvIiwieHB2X2Fzc2V0X2lkIjoxOTMxMDU1MTE3NzE5NzE1LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjYsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_zt=28&oh=00_AfNeMHqtJVi-Un5LcDK8dArHzR8ZdHJHWfg_p0Vk7odokA&oe=686C8E1A
                                    should_mute_audio:
                                      type: boolean
                                      example: false
                                    time_created:
                                      type: integer
                                      example: 1749615302
                                    trend_rank:
                                      type: 'null'
                                    previous_trend_rank:
                                      type: 'null'
                                    overlap_duration_in_ms:
                                      type: 'null'
                                    audio_asset_start_time_in_ms:
                                      type: 'null'
                                    ig_artist:
                                      type: object
                                      properties:
                                        pk:
                                          type: string
                                          example: '4396457'
                                        pk_id:
                                          type: string
                                          example: '4396457'
                                        id:
                                          type: string
                                          example: '4396457'
                                        username:
                                          type: string
                                          example: teresitassen
                                        full_name:
                                          type: string
                                          example: Winwyn Marquez
                                        is_private:
                                          type: boolean
                                          example: false
                                        is_verified:
                                          type: boolean
                                          example: true
                                        profile_pic_id:
                                          type: string
                                          example: '3580881894760116061_4396457'
                                        profile_pic_url:
                                          type: string
                                          example: >-
                                            https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5
                                        strong_id__:
                                          type: string
                                          example: '4396457'
                                      required:
                                        - pk
                                        - pk_id
                                        - id
                                        - username
                                        - full_name
                                        - is_private
                                        - is_verified
                                        - profile_pic_id
                                        - profile_pic_url
                                        - strong_id__
                                    audio_filter_infos:
                                      type: array
                                      items: {}
                                    audio_parts:
                                      type: array
                                      items: {}
                                    audio_parts_by_filter:
                                      type: array
                                      items: {}
                                    consumption_info:
                                      type: object
                                      properties:
                                        display_media_id:
                                          type: 'null'
                                        is_bookmarked:
                                          type: boolean
                                          example: false
                                        is_trending_in_clips:
                                          type: boolean
                                          example: false
                                        should_mute_audio_reason:
                                          type: string
                                          example: ''
                                        should_mute_audio_reason_type:
                                          type: 'null'
                                        user_notes:
                                          type: 'null'
                                      required:
                                        - is_bookmarked
                                        - is_trending_in_clips
                                        - should_mute_audio_reason
                                    xpost_fb_creator_info:
                                      type: 'null'
                                    fb_downstream_use_xpost_metadata:
                                      type: object
                                      properties:
                                        downstream_use_xpost_deny_reason:
                                          type: string
                                          example: NONE
                                      required:
                                        - downstream_use_xpost_deny_reason
                                  required:
                                    - allow_creator_to_rename
                                    - audio_asset_id
                                    - can_remix_be_shared_to_fb
                                    - can_remix_be_shared_to_fb_expansion
                                    - dash_manifest
                                    - duration_in_ms
                                    - hide_remixing
                                    - is_audio_automatically_attributed
                                    - is_eligible_for_audio_effects
                                    - is_eligible_for_vinyl_sticker
                                    - is_explicit
                                    - is_original_audio_download_eligible
                                    - is_reuse_disabled
                                    - is_xpost_from_fb
                                    - oa_owner_is_music_artist
                                    - original_audio_subtype
                                    - original_audio_title
                                    - original_media_id
                                    - progressive_download_url
                                    - should_mute_audio
                                    - time_created
                                    - ig_artist
                                    - audio_filter_infos
                                    - audio_parts
                                    - audio_parts_by_filter
                                    - consumption_info
                                    - fb_downstream_use_xpost_metadata
                                originality_info:
                                  type: 'null'
                                reels_on_the_rise_info:
                                  type: 'null'
                                reusable_text_attribute_string:
                                  type: 'null'
                                reusable_text_info:
                                  type: 'null'
                                shopping_info:
                                  type: 'null'
                                show_achievements:
                                  type: boolean
                                  example: false
                                template_info:
                                  type: 'null'
                                may_have_template_info:
                                  type: 'null'
                                viewer_interaction_settings:
                                  type: 'null'
                              required:
                                - clips_creation_entry_point
                                - is_public_chat_welcome_video
                                - professional_clips_upsell_type
                                - achievements_info
                                - additional_audio_info
                                - audio_ranking_info
                                - audio_type
                                - branded_content_tag_info
                                - content_appreciation_info
                                - cutout_sticker_info
                                - disable_use_in_clips_client_cache
                                - is_shared_to_fb
                                - mashup_info
                                - music_canonical_id
                                - original_sound_info
                                - show_achievements
                            can_viewer_save:
                              type: boolean
                              example: true
                            can_viewer_reshare:
                              type: boolean
                              example: false
                            shop_routing_user_id:
                              type: 'null'
                            is_organic_product_tagging_eligible:
                              type: boolean
                              example: false
                            igbio_product:
                              type: 'null'
                            product_suggestions:
                              type: array
                              items: {}
                            view_state_item_type:
                              type: integer
                              example: 128
                            logging_info_token:
                              type: string
                              example: >-
                                GCBmMWFhODk5ZGI1Yjk0YWRiOGY3YTNiM2UzMWQyYmY5ZBUAaAN2bGwA
                            clips_delivery_parameters:
                              type: object
                              properties:
                                fallback_warning_message:
                                  type: string
                                  example: ''
                                fsr_quality:
                                  type: integer
                                  example: 402
                                show_fallback_warning:
                                  type: boolean
                                  example: false
                                use_for_flash_cache_only:
                                  type: boolean
                                  example: false
                              required:
                                - fallback_warning_message
                                - fsr_quality
                                - show_fallback_warning
                                - use_for_flash_cache_only
                            is_reuse_allowed:
                              type: boolean
                              example: false
                          required:
                            - pk
                            - id
                            - fbid
                            - device_timestamp
                            - caption_is_edited
                            - strong_id__
                            - deleted_reason
                            - has_shared_to_fb
                            - has_delayed_metadata
                            - mezql_token
                            - share_count_disabled
                            - should_request_ads
                            - is_reshare_of_text_post_app_media_in_ig
                            - integrity_review_decision
                            - client_cache_key
                            - filter_type
                            - is_visual_reply_commenter_notice_enabled
                            - comment_threading_enabled
                            - like_and_view_counts_disabled
                            - has_privately_liked
                            - is_unified_video
                            - is_post_live_clips_media
                            - commerciality_status
                            - is_quiet_post
                            - subtype_name_for_REST__
                            - taken_at
                            - has_tagged_users
                            - usertags
                            - photo_of_you
                            - can_see_insights_as_brand
                            - media_type
                            - code
                            - caption
                            - sharing_friction_info
                            - timeline_pinned_user_ids
                            - play_count
                            - has_views_fetching
                            - ig_play_count
                            - creator_viewer_insights
                            - display_uri
                            - fb_user_tags
                            - coauthor_producers
                            - coauthor_producer_can_see_organic_insights
                            - invited_coauthor_producers
                            - is_in_profile_grid
                            - profile_grid_control_enabled
                            - media_cropping_info
                            - user
                            - owner
                            - image_versions2
                            - original_width
                            - original_height
                            - is_artist_pick
                            - media_reposter_bottomsheet_enabled
                            - enable_media_notes_production
                            - product_type
                            - is_paid_partnership
                            - inventory_source
                            - organic_tracking_token
                            - is_third_party_downloads_eligible
                            - ig_media_sharing_disabled
                            - are_remixes_crosspostable
                            - boost_unavailable_reason_v2
                            - subscribe_cta_visible
                            - creative_config
                            - is_cutout_sticker_allowed
                            - cutout_sticker_info
                            - recommendation_data
                            - gen_ai_detection_method
                            - fb_aggregated_like_count
                            - fb_aggregated_comment_count
                            - has_high_risk_gen_ai_inform_treatment
                            - open_carousel_show_follow_button
                            - is_tagged_media_shared_to_viewer_profile_grid
                            - >-
                              should_show_author_pog_for_tagged_media_shared_to_profile_grid
                            - is_social_ufi_disabled
                            - is_eligible_for_meta_ai_share
                            - meta_ai_suggested_prompts
                            - can_reply
                            - floating_context_items
                            - is_eligible_content_for_post_roll_ad
                            - meta_ai_contextual_voice_data
                            - related_ads_pivots_media_info
                            - is_open_to_public_submission
                            - hidden_likes_string_variant
                            - can_view_more_preview_comments
                            - commenting_disabled_for_viewer
                            - preview_comments
                            - comment_count
                            - hide_view_all_comment_entrypoint
                            - is_comments_gif_composer_enabled
                            - comment_inform_treatment
                            - has_more_comments
                            - max_num_visible_preview_comments
                            - explore_hide_comments
                            - has_liked
                            - like_count
                            - video_sticker_locales
                            - is_dash_eligible
                            - number_of_qualities
                            - video_versions
                            - video_duration
                            - has_audio
                            - clips_tab_pinned_user_ids
                            - clips_metadata
                            - can_viewer_save
                            - can_viewer_reshare
                            - is_organic_product_tagging_eligible
                            - product_suggestions
                            - view_state_item_type
                            - logging_info_token
                            - clips_delivery_parameters
                            - is_reuse_allowed
                      required:
                        - media
                  paging_info:
                    type: object
                    properties:
                      max_id:
                        type: string
                        example: >-
                          Gpa-z7y0tM7mzmXMutubrcuPvmXQl6Kk5o7lr2Wa_b_LpY_jq2XkhKqL47ufqmWqx5q7z9D4pGWq-5jqg-PJuGXu-4zrmYP4wGX2o-icwfPf32Umoqa-mvplFBI0AikIGAAaCDoGGQwA
                      more_available:
                        type: boolean
                        example: true
                    required:
                      - max_id
                      - more_available
                  music_canonical_id:
                    type: string
                    example: '18151049539042235'
                  audio_page_reporting_id:
                    type: string
                    example: '18151049539042235'
                  formatted_media_count:
                    type: string
                    example: 73.2K reels
                  metadata:
                    type: object
                    properties:
                      music_info:
                        type: 'null'
                      original_sound_info:
                        type: object
                        properties:
                          allow_creator_to_rename:
                            type: boolean
                            example: true
                          audio_asset_id:
                            type: string
                            example: '571995655694687'
                          attributed_custom_audio_asset_id:
                            type: 'null'
                          can_remix_be_shared_to_fb:
                            type: boolean
                            example: false
                          can_remix_be_shared_to_fb_expansion:
                            type: boolean
                            example: false
                          duration_in_ms:
                            type: integer
                            example: 11920
                          formatted_clips_media_count:
                            type: string
                            example: 73.2K reels
                          hide_remixing:
                            type: boolean
                            example: true
                          is_audio_automatically_attributed:
                            type: boolean
                            example: false
                          is_eligible_for_audio_effects:
                            type: boolean
                            example: true
                          is_eligible_for_vinyl_sticker:
                            type: boolean
                            example: true
                          is_explicit:
                            type: boolean
                            example: false
                          is_original_audio_download_eligible:
                            type: boolean
                            example: true
                          is_reuse_disabled:
                            type: boolean
                            example: false
                          is_xpost_from_fb:
                            type: boolean
                            example: false
                          music_canonical_id:
                            type: 'null'
                          oa_owner_is_music_artist:
                            type: boolean
                            example: false
                          original_audio_subtype:
                            type: string
                            example: default
                          original_audio_title:
                            type: string
                            example: Original audio
                          original_media_id:
                            type: string
                            example: '3654833327629868757'
                          progressive_download_url:
                            type: string
                            example: >-
                              https://video.fphl1-1.fna.fbcdn.net/o1/v/t2/f2/m69/AQO2X0DudEOCEIxvP7S4xkiZSrH3gsqhyKV3xNj0YDoHCM4YkZ_Aoa5RncIWoNmxlSroIiymo5SmK8NlFLCF0EBO.mp4?strext=1&_nc_cat=101&_nc_oc=AdkzqY-zNGhyRtpe1_yCAtXU6owXgWf-m7gRA68lTwH_47B22AZLsZrht0sAQRubn1Y&_nc_sid=8bf8fe&_nc_ht=video.fphl1-1.fna.fbcdn.net&_nc_ohc=hU0QRRLeQ7oQ7kNvwG--TDw&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5BVURJT19PTkxZLi5DMy4wLnByb2dyZXNzaXZlX2F1ZGlvIiwieHB2X2Fzc2V0X2lkIjo3NTYyMDE0NzY4NDg1OTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoxMSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&_nc_zt=28&oh=00_AfPRVtzLHDwFL_BeJb2EAE5Nw29U7hEYUYKx68FyQ8AgsA&oe=686CA2DD
                          should_mute_audio:
                            type: boolean
                            example: false
                          time_created:
                            type: integer
                            example: 1749910300
                          trend_rank:
                            type: 'null'
                          previous_trend_rank:
                            type: 'null'
                          overlap_duration_in_ms:
                            type: 'null'
                          audio_asset_start_time_in_ms:
                            type: 'null'
                          ig_artist:
                            type: object
                            properties:
                              pk:
                                type: string
                                example: '48370406447'
                              pk_id:
                                type: string
                                example: '48370406447'
                              id:
                                type: string
                                example: '48370406447'
                              username:
                                type: string
                                example: wingfoilracing
                              full_name:
                                type: string
                                example: WingFoil Racing World Cup Series
                              is_private:
                                type: boolean
                                example: false
                              is_verified:
                                type: boolean
                                example: false
                              profile_pic_id:
                                type: string
                                example: '3433580616147483629_48370406447'
                              profile_pic_url:
                                type: string
                                example: >-
                                  https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/454879680_1003083001515729_7015428953832478410_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=109&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=e4j67q9m6jcQ7kNvwHJx89z&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfORqRWB23CVv7nimJ8Tdq-aSGXmFrL0WNP_ju8e-5fqsA&oe=686CA073&_nc_sid=594fa5
                              strong_id__:
                                type: string
                                example: '48370406447'
                            required:
                              - pk
                              - pk_id
                              - id
                              - username
                              - full_name
                              - is_private
                              - is_verified
                              - profile_pic_id
                              - profile_pic_url
                              - strong_id__
                          audio_filter_infos:
                            type: array
                            items: {}
                          audio_parts:
                            type: array
                            items: {}
                          audio_parts_by_filter:
                            type: array
                            items: {}
                          consumption_info:
                            type: object
                            properties:
                              display_media_id:
                                type: 'null'
                              is_bookmarked:
                                type: boolean
                                example: false
                              is_trending_in_clips:
                                type: boolean
                                example: false
                              should_mute_audio_reason:
                                type: string
                                example: ''
                              should_mute_audio_reason_type:
                                type: 'null'
                              user_notes:
                                type: 'null'
                            required:
                              - is_bookmarked
                              - is_trending_in_clips
                              - should_mute_audio_reason
                          xpost_fb_creator_info:
                            type: 'null'
                          fb_downstream_use_xpost_metadata:
                            type: object
                            properties:
                              downstream_use_xpost_deny_reason:
                                type: string
                                example: NONE
                            required:
                              - downstream_use_xpost_deny_reason
                        required:
                          - allow_creator_to_rename
                          - audio_asset_id
                          - can_remix_be_shared_to_fb
                          - can_remix_be_shared_to_fb_expansion
                          - duration_in_ms
                          - formatted_clips_media_count
                          - hide_remixing
                          - is_audio_automatically_attributed
                          - is_eligible_for_audio_effects
                          - is_eligible_for_vinyl_sticker
                          - is_explicit
                          - is_original_audio_download_eligible
                          - is_reuse_disabled
                          - is_xpost_from_fb
                          - oa_owner_is_music_artist
                          - original_audio_subtype
                          - original_audio_title
                          - original_media_id
                          - progressive_download_url
                          - should_mute_audio
                          - time_created
                          - ig_artist
                          - audio_filter_infos
                          - audio_parts
                          - audio_parts_by_filter
                          - consumption_info
                          - fb_downstream_use_xpost_metadata
                      creative_config_info:
                        type: 'null'
                      additional_audio_info:
                        type: 'null'
                    required:
                      - original_sound_info
                  audio_ranking_info:
                    type: object
                    properties:
                      best_audio_cluster_id:
                        type: string
                        example: '5209534055764708'
                    required:
                      - best_audio_cluster_id
                  is_music_page_restricted:
                    type: boolean
                    example: false
                  audio_page_segments:
                    type: array
                    items: {}
                  available_tabs:
                    type: array
                    items:
                      type: string
                      example: clips
                  media_count:
                    type: object
                    properties:
                      clips_count:
                        type: integer
                        example: 73245
                      photos_count:
                        type: integer
                        example: 0
                    required:
                      - clips_count
                      - photos_count
                  auto_created_reels_preview_metadata:
                    type: array
                    items: {}
                  status:
                    type: string
                    example: ok
                required:
                  - success
                  - items
                  - paging_info
                  - music_canonical_id
                  - audio_page_reporting_id
                  - formatted_media_count
                  - metadata
                  - audio_ranking_info
                  - is_music_page_restricted
                  - audio_page_segments
                  - available_tabs
                  - media_count
                  - auto_created_reels_preview_metadata
                  - status
        '400':
          description: Bad Request - Invalid parameters or missing required fields
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: 'Missing required parameter: handle'
                  endpoint:
                    type: string
                  credits_required:
                    type: integer
                required:
                  - error
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Invalid API key
                  docs:
                    type: string
                    example: https://docs.sociavault.com/authentication
                required:
                  - error
        '402':
          description: Payment Required - Insufficient credits
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Insufficient credits
                  required:
                    type: integer
                    example: 1
                    description: Credits required for this request
                  available:
                    type: integer
                    example: 0
                    description: Credits currently available
                required:
                  - error
                  - required
                  - available
        '500':
          description: Internal Server Error - Service configuration or processing error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Service configuration error
                required:
                  - error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |-
        API key for authentication. Format: `sk_live_xxxxxxxxxxxxx`

        Get your API key from the [Dashboard](https://sociavault.com/dashboard).

````