> ## 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.

# Popular Search

> Explore an Instagram topic and its curated posts. Use this when you want the Popular page's generated description, sources, suggested terms, media count, and paginated posts. Use the `cursor` from each response to fetch the next page.

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

Explore an Instagram topic and its curated posts. Returns the Popular page's generated description, sources, suggested terms, media count, and paginated posts. Use the `cursor` from each response with the same `query` to fetch the next page.


## OpenAPI

````yaml GET /v1/scrape/instagram/search/popular
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/search/popular:
    get:
      tags:
        - instagram
      summary: Popular Search
      description: >-
        Explore an Instagram topic and its curated posts. Use this when you want
        the Popular page's generated description, sources, suggested terms,
        media count, and paginated posts. Use the `cursor` from each response to
        fetch the next page.
      operationId: instagram_Search_Popular
      parameters:
        - name: query
          in: query
          description: The Popular topic to search for
          required: true
          schema:
            type: string
            example: basketball
        - name: cursor
          in: query
          description: >-
            The opaque cursor returned by the previous response. Use it with the
            same query to fetch the next page of posts.
          required: false
          schema:
            type: string
            example: opaque-cursor-from-response
      responses:
        '200':
          description: >-
            Successful response


            **Key Response Fields:**

            - `data.title`: The topic title

            - `data.total_media_count`: Total number of posts for the topic

            - `data.description.plain_text`: Generated description of the topic

            - `data.description.source_uris`: Sources cited in the description,
            keyed by index

            - `data.suggested_terms`: Related/suggested search terms, keyed by
            index

            - `data.posts`: Curated posts, keyed by index (0, 1, 2, ...)

            - `data.posts[0].url`: Post/reel URL

            - `data.posts[0].type`: Media type (e.g. reel)

            - `data.posts[0].caption`: Post caption

            - `data.posts[0].play_count`: Play count (for video/reel posts)

            - `data.posts[0].owner.username`: Author's username

            - `data.posts[0].owner.is_verified`: Whether the author is verified

            - `data.cursor`: Opaque pagination cursor — pass with the same
            `query` to fetch the next page

            - `data.has_more`: Whether more posts are available
          content:
            application/json:
              example:
                success: true
                data:
                  success: true
                  credits_charged: 1
                  query: basketball
                  title: Basketball
                  total_media_count: 8800000
                  description:
                    plain_text: >-
                      James Naismith invented basketball in December 1891 in
                      Springfield, Massachusetts as an indoor winter activity.
                      Two teams of five players compete on a rectangular court
                      to score by shooting an orange ball through a hoop mounted
                      on a backboard. A field goal is worth two points, or three
                      points if made beyond the three-point line, while free
                      throws after fouls are worth one point. The team with the
                      most points after four quarters wins, with overtime added
                      if the score is tied ¹ ².


                      The sport has grown into one of the most popular
                      worldwide, governed internationally by FIBA for national
                      team competitions and the NBA as the premier professional
                      league in the United States and Canada. Players advance
                      the ball by dribbling and passing, using skills like
                      layups, jump shots, and defensive blocks. Positions range
                      from point guard to center, with modern play emphasizing
                      versatility and speed across the court ³ ⁴.


                      Basketball is played at all levels from grassroots to the
                      Olympics, where it has been a Summer Games sport since
                      1936. The WNBA expanded to 18 teams in 2025, and youth
                      international events like the FIBA U17 World Cup showcase
                      emerging talent globally. The game requires minimal
                      equipment and can be played indoors or outdoors
                      year-round, contributing to its widespread appeal ⁴ ⁵.
                    source_uris:
                      '0': https://en.wikipedia.org/wiki/Outline_of_basketball
                      '1': https://simple.wikipedia.org/wiki/Basketball
                      '2': https://about.fiba.basketball/en/our-sport/basketball
                      '3': >-
                        http://ebsco.com/research-starters/sports-and-leisure/basketball
                      '4': >-
                        https://www.fiba.basketball/en?displayAsWebViewlight=true%3FdisplayAsWebView%3Dtrue%2Ctrue
                    linked_terms: {}
                  suggested_terms:
                    '0': the tallest basketball player
                    '1': thats my man basketball
                    '2': jason williams basketball player
                    '3': st john basketball
                    '4': omer mayer purdue basketball
                    '5': tuff basketball pfp
                    '6': 77 basketball player
                    '7': uh women basketball
                    '8': dyckman basketball
                    '9': basketball shot from the moon meme
                  posts:
                    '0':
                      id: POLARIS_3896265613751768681
                      shortcode: DYSUO6yPlZp
                      url: https://www.instagram.com/reel/DYSUO6yPlZp/
                      type: reel
                      caption: >-
                        Proof that in basketball, heart and hustle will always
                        outweigh height! 🏀 While most players are looking up at
                        the giants of the league, Muggsy Bogues spent 14 seasons
                        proving that being 5-foot-3 wasn't a disadvantage—it was
                        a superpower. This classic footage highlights the
                        incredible agility and elite ball-handling that allowed
                        the shortest player in NBA history to weave through
                        defenses and lock down All-Stars twice his size.


                        ​Muggsy’s legacy remains one of the most inspiring
                        stories in sports history, showing that pure skill and
                        determination can level any playing field. From his
                        legendary days with the Charlotte Hornets to his iconic
                        battles against the league’s biggest centers, Bogues
                        proved he belonged on the court every single night.
                        Watch how he uses his low center of gravity to strip the
                        ball and ignite the fast break, reminding us all that
                        it’s not about how tall you are, but how big you play.

                        .

                        .

                        .

                        ​#MuggsyBogues #NBA #Basketball #NBAHistory
                        #CharlotteHornets
                      display_url: >-
                        https://scontent-ord5-2.cdninstagram.com/v/t51.71878-15/689425856_988621057443404_1143433454392172024_n.jpg?stp=dst-jpg_e35_s640x640_tt6&_nc_cat=103&ccb=7-5&_nc_sid=18de74&efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&_nc_ohc=KfaNPayUds0Q7kNvwEhWP-t&_nc_oc=AdomSePKxnnaOKl_tyMJ9ph0kvbx_oJQSyorLcc-EJcBfUyMifxuzy_hkJAotLMxnIQ&_nc_zt=23&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQFnIKPWymSOk0HZLDg5efD6Rqzn4k0bKgG09Tte-dRapw&oe=6A739219
                      video_url: >-
                        https://scontent-ord5-1.cdninstagram.com/o1/v/t2/f2/m86/AQOgSPhUwKURtowzH5uvw7neGo2nF2f96MiqqhB4nBCiP6HSCaYnLMg4-iMmGS-n12sTflSvnjmP-yiSCv3TLIZ0HQPX6viCXdQpRBo.mp4?_nc_cat=105&_nc_sid=5e9851&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_ohc=7qmmRh2Lrl0Q7kNvwHpsKPY&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTI4MDcyOTc0NDI0NjgyMiwiYXNzZXRfYWdlX2RheXMiOjc5LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6NjEsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=89a0e244bfd0e81b&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8xRjRDRERCREEwMkJBNkMxNjJBODRFMjI2RkZCRkM5RV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0E2NDM3M0I2ODUyNjZBMDZDQ0JDNjEzOEM3ODY2QzlFX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbMoKyXpLTGBBUCKAJDMywXQE7mZmZmZmYYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&_nc_zt=28&oh=00_AQEZev5P0uw9sOU18YKFDOmQSfh25BLbw8Nho5JG7lYkLQ&oe=6A6F89FE
                      play_count: 18672499
                      owner:
                        id: '17841420034852741'
                        username: skyhoopshq
                        is_verified: false
                        profile_pic_url: >-
                          https://scontent-ord5-1.cdninstagram.com/v/t51.82787-19/702589987_18115306369667829_2834150381302539916_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=101&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=06A5as2-FqQQ7kNvwEdSdgW&_nc_oc=AdpO6C4sSEyLwUcfg1MVn-XySN6-hlUQqskfYcWeKOey79L6Lj2CyvFPMPUHZexSUj0&_nc_zt=24&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQELxSsPev9Fh0TMo9GwvuOoUQDjHe-agF9b12kLRZ-j6g&oe=6A7385AA
                    '1':
                      id: POLARIS_3892957342260916992
                      shortcode: DYGkBO3NfMA
                      url: https://www.instagram.com/reel/DYGkBO3NfMA/
                      type: reel
                      caption: '😂😂 #meta #pov #hooper #basketball'
                      display_url: >-
                        https://scontent-ord5-3.cdninstagram.com/v/t51.71878-15/695816189_1004468735478501_2770745800467331204_n.jpg?stp=dst-jpg_e35_s640x640_tt6&_nc_cat=109&ccb=7-5&_nc_sid=18de74&efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&_nc_ohc=RyBIYE7_ZfIQ7kNvwHZyGWv&_nc_oc=AdrJJc2LzhQqZDrQ-Xe4gUnW2kyUMNNZKih6CT0V5QIW1TWO9qfjqx06gGWWh8FAm0M&_nc_zt=23&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQHYbc4cTLNo9R-P6yrCPomjb9D-WRuegMqPk7G_bC9DRA&oe=6A738D8E
                      video_url: >-
                        https://scontent-ord5-1.cdninstagram.com/o1/v/t2/f2/m86/AQOvJgGRy_z2jUdSuAInozxVVDyihCGk-byCR8OhpO1SZ4iL0ztLo8cj2-MPji9mQBSYqs4JcV-nLDZ9d2Q1F07sYljngzWeyWyqMDQ.mp4?_nc_cat=101&_nc_sid=5e9851&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_ohc=M8RsZCewIv0Q7kNvwFpyVux&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzE2LmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTM0Mjg1NjMzNDMyOTEyMywiYXNzZXRfYWdlX2RheXMiOjg0LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MzUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=f2cac2c89401b921&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC83QjRCOTVDMjdEMzc3RjlGRUREQTY0OTFERDk4NzRBRF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0IyNEFFRjlDMUI3M0MwODhGRkE4MDE1QjJBNzYyQzkwX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbGlNasw9TiBBUCKAJDMywXQEGu2RaHKwIYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&_nc_zt=28&oh=00_AQHXfTvSOBJXKMF0qZN6H6DKMqDVIPl6xPHLCjqPTShcaA&oe=6A6F995A
                      play_count: 12012195
                      owner:
                        id: '17841409679275910'
                        username: lukaceo
                        is_verified: false
                        profile_pic_url: >-
                          https://scontent-ord5-1.cdninstagram.com/v/t51.82787-19/646013146_18207090820322643_5237668095550623275_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=106&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDI0LkMzIn0%3D&_nc_ohc=4ddUrmeduIsQ7kNvwGubz2r&_nc_oc=AdqF9FJmeapwDFrPDq3iqubZasKugog__FNRHof_hyeVOcrF9KimY7d-utCc55VwqgQ&_nc_zt=24&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQECD5xhMl5XcoNEO9QdQTCvu7CytPwFT0MNLeeP9a9qJQ&oe=6A737F71
                    '2':
                      id: POLARIS_3933819748054618065
                      shortcode: DaXvDf1Nk_R
                      url: https://www.instagram.com/reel/DaXvDf1Nk_R/
                      type: reel
                      caption: >-
                        How to beat your defender in basketball #basketball
                        #tipsandtricks
                      display_url: >-
                        https://scontent-ord5-3.cdninstagram.com/v/t51.82787-15/731736208_17895300930515782_2504397938312074622_n.jpg?stp=dst-jpg_e35_s640x640_tt6&_nc_cat=110&ccb=7-5&_nc_sid=18de74&efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&_nc_ohc=1EGAvQ2E8YgQ7kNvwHrItb7&_nc_oc=AdpHKW6HwEDIgMncaA2BuDUoKs6g2u407IfJqwSyy5oU_BgFhrOlI18h05KyzU7IWQg&_nc_zt=23&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQEWvndjJhPwnHPm2ZcMThWmV71s2YCPFTDuqN6BtNRLWg&oe=6A7372ED
                      video_url: >-
                        https://scontent-ord5-1.cdninstagram.com/o1/v/t2/f2/m86/AQMhoDDIMku2CTPbDAsKnYaiIXr-NEkcXce8lIhc9fdLGTP9-AsydBXurIDXjDNH7se5C6UrZJRn8vQ0PERtzzz8xHL6bANrkSkT0Hc.mp4?_nc_cat=108&_nc_sid=5e9851&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_ohc=0qUou5sVPAAQ7kNvwFPa2nn&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTU3MTY0NTY0MTIzMTEwMywiYXNzZXRfYWdlX2RheXMiOjI3LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6NjIsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=cf75a797a8b848d5&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC81MTQxN0I2QzFGNDA0MzA5NzREMzYzMDZEQTVFQTRCNF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0RCNEUzMUM5NjFBMDcwRDFFRTA5ODJERkE1OEQxQUJGX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACb-q8TC6NnKBRUCKAJDMywXQE8iDEm6XjUYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&_nc_zt=28&oh=00_AQH-VbNS1ZIgjrBUJztH-rcHCiOJ5iDHvFTdcN4T3AJAGA&oe=6A6F9EE9
                      play_count: 11218973
                      owner:
                        id: '17841475473433342'
                        username: povhooper
                        is_verified: true
                        profile_pic_url: >-
                          https://scontent-ord5-2.cdninstagram.com/v/t51.82787-19/589004906_17865226026515782_783197253802951559_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=1&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy43MzYuQzMifQ%3D%3D&_nc_ohc=obL6rylRAEYQ7kNvwHZ3xgK&_nc_oc=AdoSUUGmn7z6rm9KRjuzTVBJhOy7QUvhWGxw-8MKat0T-ZffMGm5qpYWOkaw4ksD2TE&_nc_zt=24&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQHbxOpTC8xfXIe1vPeRy_xlBbS3QAwPJF1hcY38GLbilA&oe=6A739447
                    '3':
                      id: POLARIS_3895406558156412747
                      shortcode: DYPQ6A6o9dL
                      url: https://www.instagram.com/reel/DYPQ6A6o9dL/
                      type: reel
                      caption: >-
                        Josh Hart has carved out a unique niche in the NBA by
                        mastering the "little things" that often go unnoticed
                        but are vital to a team's success. This video highlights
                        his peculiar, yet highly effective, approach to the
                        game—one that prioritizes grit, anticipation, and an
                        almost mischievous level of floor awareness. Whether
                        it's his relentless pursuit of rebounds despite being
                        undersized or his ability to disrupt passing lanes with
                        unconventional positioning, Hart’s playstyle is defined
                        by a high-energy motor that never seems to shut off,
                        making him a perennial fan favorite and a coach’s dream.


                        A significant portion of Hart's "IQ" showcased here
                        involves his defensive craftiness and psychological
                        warfare on the court. He isn’t just reacting to the
                        play; he is often baiting opponents into mistakes or
                        finding ways to manipulate the flow of the game through
                        sheer hustle. The video captures moments where he uses
                        his body in unorthodox ways to shield the ball or secure
                        a possession, demonstrating a deep understanding of
                        leverage and spatial dynamics. This "scrappy" persona
                        allows him to bridge the gap between stars and role
                        players, acting as the connective tissue that keeps a
                        lineup functioning under pressure.


                        Ultimately, the video suggests that Josh Hart’s value
                        lies in his cognitive engagement with the game—his
                        ability to read the court three steps ahead of everyone
                        else. While some players rely solely on elite
                        athleticism or shooting, Hart relies on his brain to
                        find the "garbage points" and defensive stops that win
                        games. His playstyle is a testament to the idea that
                        basketball intelligence can be just as dominant as
                        physical prowess. By always being in the right place at
                        the right time, Hart proves that a "studied" IQ is the
                        ultimate equalizer in professional sports.

                        #fyp #viral #NBA #Basketball
                      display_url: >-
                        https://scontent-ord5-2.cdninstagram.com/v/t51.71878-15/696012321_3438649609649126_1194710117742803867_n.jpg?stp=dst-jpg_e35_s640x640_tt6&_nc_cat=102&ccb=7-5&_nc_sid=18de74&efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&_nc_ohc=d_g6dwbiMEsQ7kNvwGdJz6g&_nc_oc=Adpmsxma4rp6MDXtt2FPiGbm9mnbmLGyRIL8ChXErEQwVmn_UMF7bL6-SGHul-sVCU4&_nc_zt=23&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQGI78EakcQAhwl1zy7KEP6RKLIt07fE-Tmca0RfzXu2Jg&oe=6A73821C
                      video_url: >-
                        https://scontent-ord5-1.cdninstagram.com/o1/v/t2/f2/m86/AQNOE5flkcLtF39JL-Wtle6guyEEdFKaLGdpEG2c9p6JFxLLsIPyde7TbDScvX8LmabJhMsSqTk6E7Os-mEXSVJ_f2VNT5jn_my7czs.mp4?_nc_cat=107&_nc_sid=5e9851&_nc_ht=scontent-ord5-1.cdninstagram.com&_nc_ohc=WkVwy-qTC08Q7kNvwGGEgmd&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTQ5MzQwNjE3NTc5NjY4NSwiYXNzZXRfYWdlX2RheXMiOjgwLCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6NjMsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=ed91759b3e635883&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9GODQxRUNDNDc2NEEyNTEwQjI5RTRGNDU0RkVENUNCQV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzMzNDMwMTlCNDc1NURBRTNEMkZCMzFGNTM5NUFFOUEzX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaa9-iJ14-nBRUCKAJDMywXQE-AAAAAAAAYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&_nc_zt=28&oh=00_AQHoJODPlD_xaUQhH1tLkCsz2vKGoeN6b1iZZwYfiKz0hw&oe=6A6F9694
                      play_count: 13600207
                      owner:
                        id: '17841416595493799'
                        username: hoopersyrd
                        is_verified: false
                        profile_pic_url: >-
                          https://scontent-ord5-2.cdninstagram.com/v/t51.82787-19/688617118_18124105447553184_7366108189243481260_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_cat=1&ccb=7-5&_nc_sid=f7ccc5&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy4xMDgwLkMzIn0%3D&_nc_ohc=glBbuZir6KkQ7kNvwFWbQMV&_nc_oc=Ado9OUxoA1ta8wmcEdZCLXOlHTu2NLoji2tW-7-dEDDPRkH8lhdo1Gv5ze6t9yTdZNA&_nc_zt=24&_nc_ht=scontent-ord5-2.cdninstagram.com&_nc_gid=jNeGtvhpWLPv7LdOHbfHIQ&_nc_ss=7fa8c&oh=00_AQHxiyRzhA6ix_emCpy6qWBVy0Sz3JZnoCv62oi9fBP-Rw&oe=6A739B82
                  cursor: >-
                    eyJ2ZXJzaW9uIjoxLCJxdWVyeSI6ImJhc2tldGJhbGwiLCJhZnRlciI6IkFRSFNTQkppbGlxdzFsMDdLQzVqaTA1VVlTbG5KTzZBb2hWYWs3NzcxSnR5QXQzLTlGV2ZjcGQ4bnlybmd6NGpVTlkxIiwibHNkIjoiQWRTcDhCeHM0MEdkOElWc0pKVmFrRTNORF9vIiwiY3NyZlRva2VuIjoiREl3VzV3VzZXQlpqM296QnpYQXBPRiJ9
                  has_more: true
                credits_used: 1
                endpoint: instagram/search/popular
        '400':
          description: Bad Request - Invalid parameters or missing required fields
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: query is required for Instagram popular search
                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
                  available:
                    type: integer
                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).

````