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

# Company Ads

> Get all the ads a company has running

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


## OpenAPI

````yaml GET /v1/scrape/facebook-ad-library/company-ads
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/facebook-ad-library/company-ads:
    get:
      tags:
        - facebookAdLibrary
      summary: Company Ads
      description: Get all the ads a company has running
      operationId: facebookAdLibrary_Company_Ads
      parameters:
        - name: pageId
          in: query
          description: >-
            The companies ad library page id. You can get this with my Search
            For Companies Endpoint. Can either use this or companyName
          required: false
          schema:
            type: string
            example: '367152833370567'
        - name: companyName
          in: query
          description: The name of the company. Can either use this or pageId
          required: false
          schema:
            type: string
            example: Lululemon
        - name: country
          in: query
          description: >-
            This can only be one country. It has to be the 2 letter code for the
            country. It defaults to ALL.
          required: false
          schema:
            type: string
            example: ALL
        - name: status
          in: query
          description: Status of the ad. Defaults to ACTIVE.
          required: false
          schema:
            type: string
            enum:
              - ALL
              - ACTIVE
              - INACTIVE
            example: ACTIVE
        - name: media_type
          in: query
          description: >-
            Media type of the ad. Defaults to ALL. Meme refers to ads with image
            and text. Not sure why they call it meme.
          required: false
          schema:
            type: string
            enum:
              - ALL
              - IMAGE
              - VIDEO
              - MEME
              - IMAGE_AND_MEME
              - NONE
            example: ALL
        - name: language
          in: query
          description: >-
            Language to filter ads on. Needs to be 2 letter language code, ie
            EN, ES, FR, etc
          required: false
          schema:
            type: string
            example: EN
        - name: start_date
          in: query
          description: 'Start date to search for. Format: YYYY-MM-DD'
          required: false
          schema:
            type: string
            example: '2025-01-01'
        - name: end_date
          in: query
          description: 'End date to search for. Format: YYYY-MM-DD'
          required: false
          schema:
            type: string
            example: '2025-12-31'
        - name: cursor
          in: query
          description: Cursor to paginate through results
          required: false
          schema:
            type: string
            example: >-
              AQHRBUAxNmFlxBVMFL6uTb1ICFsV65O4SqmPbcVZJhiveBpPS1hFHAmL6yCJcF760cXP
        - name: trim
          in: query
          description: Set to true for a trimmed down version of the response
          required: false
          schema:
            type: boolean
            example: false
      responses:
        '200':
          description: >-
            Successful response


            **Key Response Fields:**

            - `data.results[0].ad_archive_id`: The actual ad ID (use this —
            `ad_id` is always null)

            - `data.results[0].is_active`: Whether the ad is currently running

            - `data.results[0].page_id`: Facebook page ID running the ad

            - `data.results[0].page_name`: Facebook page name

            - `data.results[0].start_date_string`: ISO timestamp of when the ad
            started

            - `data.results[0].end_date_string`: ISO timestamp of when the ad
            ended or will end

            - `data.results[0].publisher_platform`: Platforms the ad runs on

            - `data.results[0].snapshot.title`: Ad headline/title

            - `data.results[0].snapshot.body.text`: Ad body copy

            - `data.results[0].snapshot.cta_text`: Call-to-action button text

            - `data.results[0].snapshot.cards[0].original_image_url`: Ad
            creative image URL

            - `data.searchResultsCount`: Total number of ads found for this
            company

            - `data.cursor`: Pagination cursor — pass as `cursor` to get further
            results
          content:
            application/json:
              examples:
                full:
                  summary: Full Response
                  value:
                    success: true
                    data:
                      success: true
                      results:
                        '0':
                          ad_archive_id: '1625888671364134'
                          collation_count: null
                          collation_id: null
                          page_id: '33693527731'
                          snapshot:
                            branded_content: null
                            page_id: '33693527731'
                            page_is_deleted: false
                            page_profile_uri: https://www.facebook.com/lululemon/
                            root_reshared_post: null
                            byline: null
                            disclaimer_label: null
                            page_name: lululemon
                            page_profile_picture_url: >-
                              https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/502530959_572465035900069_8338653867845815259_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=8eLpmgUnaNEQ7kNvwEluO2L&_nc_oc=Adnjv01wRgHk1uSlv2pVMLDHwBUlH16_QX1ZCdQlDLxBiacYs14vA1TD3khvr9OE-40&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_Afu5wvRY_0jt-hhOjpc98ewBQOXVQW9K5gYLPtrOV-Tpkg&oe=698F11E4
                            event: null
                            caption: shop.lululemon.com
                            cta_text: Shop now
                            cards:
                              '0':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  When feeling nothing is everything. The
                                  lululemon Align collection is so weightless
                                  and buttery soft, all you feel is your
                                  practice. Designed for Yoga. Intended to sit
                                  at bottom of calf. Hidden waistband pocket
                                  fits a card or key, and won't get in your way,
                                  This collection's great for low-impact
                                  workouts like yoga or whenever you want to
                                  feel really, really comfortable. Feels
                                  Buttery-Soft and Weightless, Nulu Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/women-crops/Align-Crop-21/_/prod8780230?color=31382&sz=2
                                title: lululemon Align™ High-Rise Crop 21"
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/501040337_1833520400551502_7356299259003438152_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=3ZZuIqcUwPoQ7kNvwFnHjX1&_nc_oc=AdmiZhypk6s1O3pLp8dY8fnw7VYP5etKO7_ymWvX7UbuSHhZNaVwie8QhulcRTIm2SE&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_Afsn_Etxa6swvpuNypjDoUMNJTpo1g_34t8n7GedWwKzfQ&oe=698F04B3
                                resized_image_url: >-
                                  https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/501040337_1833520400551502_7356299259003438152_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=3ZZuIqcUwPoQ7kNvwFnHjX1&_nc_oc=AdmiZhypk6s1O3pLp8dY8fnw7VYP5etKO7_ymWvX7UbuSHhZNaVwie8QhulcRTIm2SE&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_Afu5jPWXXo4PsJBPTTHNUB29i1VFDYWHv9G1b9i1sK0z1w&oe=698F04B3
                                watermarked_resized_image_url: ''
                              '1':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  The five-pocket jean, reinvented. These
                                  classic-fit pants, powered by ABC technology,
                                  give you freedom of movement and all-day
                                  comfort. Designed for Casual. Streamlined fit
                                  that gives glutes and thighs breathing
                                  room:Our ABC (Anti-Ball-Crushing) technology
                                  uses an ergonomic gusset to remove tension
                                  from the crotch of our pants so you can move
                                  in comfort. Hidden zippered pocket, Flip up
                                  the cuffs to reveal reflective details.
                                  Everyday Performance, Warpstreme Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/men-pants/ABC-Pant-Classic-34/_/prod3470413?color=31382&sz=28
                                title: ABC Classic-Fit 5 Pocket Pants 34L Warpstreme
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/500990218_680996498019681_9199925266514752551_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Qu4e3kQY6HAQ7kNvwEZ9czH&_nc_oc=AdnILQjowApJbxpNrCLM_44Qpoxasalnu4EgsP0YfQ4DvrBBhORGlSO3dOYWylgyKHQ&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfsSY9ci--VfAu9X-KTZ6i3MD4uSCo2iAO2PdOaGlVg3IQ&oe=698EF2F9
                                resized_image_url: >-
                                  https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/500990218_680996498019681_9199925266514752551_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Qu4e3kQY6HAQ7kNvwEZ9czH&_nc_oc=AdnILQjowApJbxpNrCLM_44Qpoxasalnu4EgsP0YfQ4DvrBBhORGlSO3dOYWylgyKHQ&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_Afs1mx9MEL8qjKLYE-gEPE_BcaAnzKxPx2s3f3VG9P2l8Q&oe=698EF2F9
                                watermarked_resized_image_url: ''
                              '2':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  Train hard, not hot. Powered by Everlux, the
                                  Wunder Train collection is highly breathable
                                  and quickly wicks sweat so you feel less
                                  sweaty during (and after) your workout.
                                  Designed for Training. Waistband drawcord
                                  keeps your shorts in place so you don't have
                                  to pull them up, Hidden pocket in the
                                  waistband has space for your card and keys.
                                  Our Fastest-Drying, Everlux Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/women-shorts/Wunder-Train-HighRise-Short-4/_/prod10370400?color=0001&sz=14
                                title: Wunder Train High-Rise Shorts 4"
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/501517343_669823675931691_8695646468465722968_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FoinsOoWE1EQ7kNvwG9Pkez&_nc_oc=Adl0788uQUyTuragCVl6-YY_j15t9Da8JN_KeT_YrQaLp88_r1Ul2lIvlp-fJkuu7yo&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfsT27iKaq6NzY7Qmd4d7ooJhfA0zUdMQTsQb67QylBd4A&oe=698F0BD7
                                resized_image_url: >-
                                  https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/501517343_669823675931691_8695646468465722968_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FoinsOoWE1EQ7kNvwG9Pkez&_nc_oc=Adl0788uQUyTuragCVl6-YY_j15t9Da8JN_KeT_YrQaLp88_r1Ul2lIvlp-fJkuu7yo&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_Afsx9XN8axcnucwWoNk2QaNG-R9QQ3p3YoWBI7Ll1Z4_5A&oe=698F0BD7
                                watermarked_resized_image_url: ''
                              '3':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  The five-pocket jean, reinvented. These
                                  classic-fit pants, powered by ABC technology,
                                  give you freedom of movement and all-day
                                  comfort. Designed for Casual. Streamlined fit
                                  that gives glutes and thighs breathing
                                  room:Our ABC (Anti-Ball-Crushing) technology
                                  uses an ergonomic gusset to remove tension
                                  from the crotch of our pants so you can move
                                  in comfort. Hidden zippered pocket, Flip up
                                  the cuffs to reveal reflective details.
                                  Everyday Performance, Warpstreme Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/men-pants/ABC-Pant-Classic-34/_/prod3470413?color=31382&sz=31
                                title: ABC Classic-Fit 5 Pocket Pants 34L Warpstreme
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/502544894_730202286103458_2281918677431026187_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b1PFHJ9FFYIQ7kNvwGuAJpa&_nc_oc=Adn89ijPQtv7rKSd2BoYBXWlhDskA5A6UAFBbBc0HNXaGnJ7btwTMCpsipoXPSD6lIE&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfvjZ-v2ofJOrFv2fnkBpwIlXQeiDmJtaSFDR8KPOLgljw&oe=698EE3B2
                                resized_image_url: >-
                                  https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/502544894_730202286103458_2281918677431026187_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b1PFHJ9FFYIQ7kNvwGuAJpa&_nc_oc=Adn89ijPQtv7rKSd2BoYBXWlhDskA5A6UAFBbBc0HNXaGnJ7btwTMCpsipoXPSD6lIE&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfvMT5oO8EA3T7lRhSLiG6rHibSWJ4kQDR0Jc-DHp-JmYA&oe=698EE3B2
                                watermarked_resized_image_url: ''
                              '4':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  The five-pocket jean, reinvented. These
                                  classic-fit pants, powered by ABC technology,
                                  give you freedom of movement and all-day
                                  comfort. Designed for Casual. Streamlined fit
                                  that gives glutes and thighs breathing
                                  room:Our ABC (Anti-Ball-Crushing) technology
                                  uses an ergonomic gusset to remove tension
                                  from the crotch of our pants so you can move
                                  in comfort. Hidden zippered pocket, Flip up
                                  the cuffs to reveal reflective details.
                                  Everyday Performance, Warpstreme Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/men-pants/ABC-Pant-Classic-32/_/prod8900334?color=31382&sz=32
                                title: ABC Classic-Fit 5 Pocket Pants 32L Warpstreme
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/501448825_2070138883495967_2405554454405002378_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=-fWM3zmSTaUQ7kNvwGordqN&_nc_oc=AdnlPz6eNsYQyiRF6dHIWuHIsU9SNTuxVy-pczjUZlC_byBQ3LQn9uPU1jdbqZzzXEI&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfvuItF5djH4mFLomy1h2X1X_fyuZOIl_84L5YlqMB_nUA&oe=698EF545
                                resized_image_url: >-
                                  https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/501448825_2070138883495967_2405554454405002378_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=-fWM3zmSTaUQ7kNvwGordqN&_nc_oc=AdnlPz6eNsYQyiRF6dHIWuHIsU9SNTuxVy-pczjUZlC_byBQ3LQn9uPU1jdbqZzzXEI&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfsGy5USbY7NfgNQbIOcSDgiV2UJxOm3VuZKCXA9rI1kZw&oe=698EF545
                                watermarked_resized_image_url: ''
                              '5':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  Warm up, train hard, cool down. These cropped
                                  joggers are designed to keep up with you. Too
                                  hot? No sweat, zips at the cuff let you
                                  de-layer fast. Designed for Running and
                                  Training. Classic fit is an easy fit that
                                  floats away from your body:Intended to sit
                                  below calf. Secure zippered pockets to store
                                  your phone and cards, Continuous drawcord is
                                  easy to cinch and won't get lost in the wash,
                                  Zippers at the cuff make them easy to get on
                                  and off quickly.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/womens-joggers/Adapted-State-Jogger-Crop/_/prod10642641?color=31382&sz=0
                                title: Adapted State High-Rise Cropped Joggers
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/501016305_1332076267889462_2386317876659030056_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gLaPuaDNEu0Q7kNvwGiwaNh&_nc_oc=AdkkUmglwUjhHdLt4TfcHxeVw4rNhi3-zzVu_3sag60CM1KAi9DZzcD2vhxP1UppRcc&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_Afu3WsuMDz0lBzRY4YJrXx-BWkCXDgrcJv4VmuF0QeIajw&oe=698EFDA1
                                resized_image_url: >-
                                  https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/501016305_1332076267889462_2386317876659030056_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gLaPuaDNEu0Q7kNvwGiwaNh&_nc_oc=AdkkUmglwUjhHdLt4TfcHxeVw4rNhi3-zzVu_3sag60CM1KAi9DZzcD2vhxP1UppRcc&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=S6raXC4R9RHcXhhl9Qx_jQ&oh=00_AfvPmuZ2cX4_3mw86N77e7CgYmhcH0hRCTU0LtRG86ELbg&oe=698EFDA1
                                watermarked_resized_image_url: ''
                            body:
                              text: >-
                                Keep your practice going with stylish gear that
                                performs. As always, just leave the shipping and
                                returns to us.
                            cta_type: SHOP_NOW
                            display_format: DPA
                            link_description: >-
                              When feeling nothing is everything. The lululemon
                              Align collection is so weightless and buttery
                              soft, all you feel is your practice. Designed for
                              Yoga. Intended to sit at bottom of calf. Hidden
                              waistband pocket fits a card or key, and won't get
                              in your way, This collection's great for
                              low-impact workouts like yoga or whenever you want
                              to feel really, really comfortable. Feels
                              Buttery-Soft and Weightless, Nulu Fabric.
                            link_url: >-
                              https://shop.lululemon.com/en-ca/c/whats-new/n1q0cf
                            images: {}
                            page_categories:
                              '0': Clothing (Brand)
                            page_like_count: 3444597
                            title: lululemon Align™ High-Rise Crop 21"
                            videos: {}
                            is_reshared: false
                            extra_links: {}
                            extra_texts: {}
                            extra_images: {}
                            extra_videos: {}
                            country_iso_code: null
                            brazil_tax_id: null
                            additional_info: null
                            ec_certificates: {}
                          is_active: true
                          has_user_reported: false
                          report_count: null
                          menu_items: {}
                          state_media_run_label: null
                          page_is_deleted: false
                          page_name: lululemon
                          impressions_with_index:
                            impressions_text: null
                            impressions_index: -1
                          gated_type: ELIGIBLE
                          categories:
                            '0': UNKNOWN
                          is_aaa_eligible: false
                          contains_digital_created_media: false
                          reach_estimate: null
                          currency: ''
                          spend: null
                          end_date: 1770537600
                          publisher_platform:
                            '0': FACEBOOK
                            '1': INSTAGRAM
                            '2': AUDIENCE_NETWORK
                            '3': MESSENGER
                            '4': THREADS
                          start_date: 1748847600
                          contains_sensitive_content: false
                          total_active_time: null
                          regional_regulation_data:
                            finserv:
                              is_deemed_finserv: false
                              is_limited_delivery: false
                            tw_anti_scam:
                              is_limited_delivery: false
                          hide_data_status: NONE
                          fev_info: null
                          ad_id: null
                          targeted_or_reached_countries: {}
                          url: >-
                            https://www.facebook.com/ads/library?id=1625888671364134
                          start_date_string: '2025-06-02T07:00:00.000Z'
                          end_date_string: '2026-02-08T08:00:00.000Z'
                      searchResultsCount: 276
                      cursor: >-
                        AQHSizCnSIXjFYiXwLW5i4s2c2ghheOh0b7lEmFfOsZZhQrNGRj4t4kKuTYMcZnV_bsO
                    creditsUsed: 1
                trimmed:
                  summary: Trimmed Response
                  value:
                    success: true
                    data:
                      success: true
                      results:
                        '0':
                          ad_archive_id: '1625888671364134'
                          end_date: 1770537600
                          is_aaa_eligible: false
                          is_active: true
                          page_id: '33693527731'
                          page_name: lululemon
                          reach_estimate: null
                          snapshot:
                            branded_content: null
                            page_id: '33693527731'
                            page_is_deleted: false
                            page_profile_uri: https://www.facebook.com/lululemon/
                            root_reshared_post: null
                            byline: null
                            disclaimer_label: null
                            page_name: lululemon
                            page_profile_picture_url: >-
                              https://scontent-atl3-2.xx.fbcdn.net/v/t39.35426-6/502530959_572465035900069_8338653867845815259_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=8eLpmgUnaNEQ7kNvwGOK6Vp&_nc_oc=Adn-hXOx5jrv9TRc78sm-vDQHFpcF6evrkvf--I9IM5EHnd8qJGmKMYnkZYep4k1mCg&_nc_zt=14&_nc_ht=scontent-atl3-2.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AfuYG0vTvK44MytbBuyJPXJJfWo25MXG1_RXHCwPnRhfWA&oe=698F11E4
                            event: null
                            caption: shop.lululemon.com
                            cta_text: Shop now
                            cards:
                              '0':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  The five-pocket jean, reinvented. These
                                  classic-fit pants, powered by ABC technology,
                                  give you freedom of movement and all-day
                                  comfort. Designed for Casual. Streamlined fit
                                  that gives glutes and thighs breathing
                                  room:Our ABC (Anti-Ball-Crushing) technology
                                  uses an ergonomic gusset to remove tension
                                  from the crotch of our pants so you can move
                                  in comfort. Hidden zippered pocket, Flip up
                                  the cuffs to reveal reflective details.
                                  Everyday Performance, Warpstreme Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/men-pants/ABC-Pant-Classic-32/_/prod8900334?color=31382&sz=32
                                title: ABC Classic-Fit 5 Pocket Pants 32L Warpstreme
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/501448825_2070138883495967_2405554454405002378_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=-fWM3zmSTaUQ7kNvwEUl4wf&_nc_oc=Adl1rRuqKd1XRBcb3r1lIyCWrBhu64h8VTPPTj0TOwdEZ3copkZ251cgoHVwRr2oCP4&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AfvrO07vsHKxGeIQ97b3Q4brkQxSWfgIZBcKzyWGpqef-w&oe=698EF545
                                resized_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/501448825_2070138883495967_2405554454405002378_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=-fWM3zmSTaUQ7kNvwEUl4wf&_nc_oc=Adl1rRuqKd1XRBcb3r1lIyCWrBhu64h8VTPPTj0TOwdEZ3copkZ251cgoHVwRr2oCP4&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_Afu51H1T5B8ItXudiPDe-xOYVmD8PvYscsbxpb1e1l9jIQ&oe=698EF545
                                watermarked_resized_image_url: ''
                              '1':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  The five-pocket jean, reinvented. These
                                  classic-fit pants, powered by ABC technology,
                                  give you freedom of movement and all-day
                                  comfort. Designed for Casual. Streamlined fit
                                  that gives glutes and thighs breathing
                                  room:Our ABC (Anti-Ball-Crushing) technology
                                  uses an ergonomic gusset to remove tension
                                  from the crotch of our pants so you can move
                                  in comfort. Hidden zippered pocket, Flip up
                                  the cuffs to reveal reflective details.
                                  Everyday Performance, Warpstreme Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/men-pants/ABC-Pant-Classic-34/_/prod3470413?color=31382&sz=28
                                title: ABC Classic-Fit 5 Pocket Pants 34L Warpstreme
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/500990218_680996498019681_9199925266514752551_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Qu4e3kQY6HAQ7kNvwGKYyre&_nc_oc=AdkdUZQr3dPrf2km5JcjngwxLgCq26fkgWbEzMHWMapAPQCWSGic_dbt7kTsSbiHVtY&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_Afsc-2WjOHrkUf8SnFpqf27dqwRzW6foPRIGJPdvCwrtsQ&oe=698EF2F9
                                resized_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/500990218_680996498019681_9199925266514752551_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Qu4e3kQY6HAQ7kNvwGKYyre&_nc_oc=AdkdUZQr3dPrf2km5JcjngwxLgCq26fkgWbEzMHWMapAPQCWSGic_dbt7kTsSbiHVtY&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_Aft27t9Q3YvJuRxcu4_1dMr1OlOUGgidA7932hJc9VjUQA&oe=698EF2F9
                                watermarked_resized_image_url: ''
                              '2':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  When feeling nothing is everything. The
                                  lululemon Align collection is so weightless
                                  and buttery soft, all you feel is your
                                  practice. Designed for Yoga. Intended to sit
                                  at bottom of calf. Hidden waistband pocket
                                  fits a card or key, and won't get in your way,
                                  This collection's great for low-impact
                                  workouts like yoga or whenever you want to
                                  feel really, really comfortable. Feels
                                  Buttery-Soft and Weightless, Nulu Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/women-crops/Align-Crop-21/_/prod8780230?color=31382&sz=2
                                title: lululemon Align™ High-Rise Crop 21"
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/501040337_1833520400551502_7356299259003438152_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=3ZZuIqcUwPoQ7kNvwFE0Ick&_nc_oc=AdmDNjgprYoX9mx_a3fL-17P1UiU15xLXbrBJCVqFoVvuzY8WDik-kJF154naPmr7hs&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AfuSJc8nS_Qz64QWjPr5Ojo6naqw3rhvbcHUIyXY-p2h9Q&oe=698F04B3
                                resized_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/501040337_1833520400551502_7356299259003438152_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=3ZZuIqcUwPoQ7kNvwFE0Ick&_nc_oc=AdmDNjgprYoX9mx_a3fL-17P1UiU15xLXbrBJCVqFoVvuzY8WDik-kJF154naPmr7hs&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_Aft9Fr08y7TJHe-Bdod8VBoA4d90eRVFdZklqQIKBHeDxg&oe=698F04B3
                                watermarked_resized_image_url: ''
                              '3':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  Warm up, train hard, cool down. These cropped
                                  joggers are designed to keep up with you. Too
                                  hot? No sweat, zips at the cuff let you
                                  de-layer fast. Designed for Running and
                                  Training. Classic fit is an easy fit that
                                  floats away from your body:Intended to sit
                                  below calf. Secure zippered pockets to store
                                  your phone and cards, Continuous drawcord is
                                  easy to cinch and won't get lost in the wash,
                                  Zippers at the cuff make them easy to get on
                                  and off quickly.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/womens-joggers/Adapted-State-Jogger-Crop/_/prod10642641?color=31382&sz=0
                                title: Adapted State High-Rise Cropped Joggers
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-atl3-2.xx.fbcdn.net/v/t39.35426-6/501016305_1332076267889462_2386317876659030056_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gLaPuaDNEu0Q7kNvwFYgJzo&_nc_oc=AdnwJuoLEJ9eKbX3itD3gntu6zKRO8gq306emr7wWTJLLkMclqemaiDrDB1y5w3Tnpk&_nc_zt=14&_nc_ht=scontent-atl3-2.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AfuoHT8Sv1f7IKmcm9nNzlLF1Xqr82iH_5uX9y4YXR4jgA&oe=698EFDA1
                                resized_image_url: >-
                                  https://scontent-atl3-2.xx.fbcdn.net/v/t39.35426-6/501016305_1332076267889462_2386317876659030056_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gLaPuaDNEu0Q7kNvwFYgJzo&_nc_oc=AdnwJuoLEJ9eKbX3itD3gntu6zKRO8gq306emr7wWTJLLkMclqemaiDrDB1y5w3Tnpk&_nc_zt=14&_nc_ht=scontent-atl3-2.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_Afs69Qag06p4InzXoWuHed0PNvAD6bRJk4jyCf9DzgiXhA&oe=698EFDA1
                                watermarked_resized_image_url: ''
                              '4':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  Train hard, not hot. Powered by Everlux, the
                                  Wunder Train collection is highly breathable
                                  and quickly wicks sweat so you feel less
                                  sweaty during (and after) your workout.
                                  Designed for Training. Waistband drawcord
                                  keeps your shorts in place so you don't have
                                  to pull them up, Hidden pocket in the
                                  waistband has space for your card and keys.
                                  Our Fastest-Drying, Everlux Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/women-shorts/Wunder-Train-HighRise-Short-4/_/prod10370400?color=0001&sz=14
                                title: Wunder Train High-Rise Shorts 4"
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-atl3-2.xx.fbcdn.net/v/t39.35426-6/501517343_669823675931691_8695646468465722968_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FoinsOoWE1EQ7kNvwH5h6q9&_nc_oc=AdmOIjUjQ4X3cMUk0OMwE0pO14WhtzJ3qWNCxCIYkiXKHoq31tYJ4Bmxa5iQXr1KADo&_nc_zt=14&_nc_ht=scontent-atl3-2.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AfsDXWY2-AlkVhYxA_9ova5p42mr0vhoMHsENSuWn3BjQA&oe=698F0BD7
                                resized_image_url: >-
                                  https://scontent-atl3-2.xx.fbcdn.net/v/t39.35426-6/501517343_669823675931691_8695646468465722968_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FoinsOoWE1EQ7kNvwH5h6q9&_nc_oc=AdmOIjUjQ4X3cMUk0OMwE0pO14WhtzJ3qWNCxCIYkiXKHoq31tYJ4Bmxa5iQXr1KADo&_nc_zt=14&_nc_ht=scontent-atl3-2.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AftdURNWI2rXgShnAhgZrNMc-TgUTnfmjQRGq7_TgGrGdg&oe=698F0BD7
                                watermarked_resized_image_url: ''
                              '5':
                                body: >-
                                  Keep your practice going with stylish gear
                                  that performs. As always, just leave the
                                  shipping and returns to us.
                                cta_type: SHOP_NOW
                                caption: shop.lululemon.com
                                link_description: >-
                                  The five-pocket jean, reinvented. These
                                  classic-fit pants, powered by ABC technology,
                                  give you freedom of movement and all-day
                                  comfort. Designed for Casual. Streamlined fit
                                  that gives glutes and thighs breathing
                                  room:Our ABC (Anti-Ball-Crushing) technology
                                  uses an ergonomic gusset to remove tension
                                  from the crotch of our pants so you can move
                                  in comfort. Hidden zippered pocket, Flip up
                                  the cuffs to reveal reflective details.
                                  Everyday Performance, Warpstreme Fabric.
                                link_url: >-
                                  https://shop.lululemon.com/en-ca/p/men-pants/ABC-Pant-Classic-34/_/prod3470413?color=31382&sz=31
                                title: ABC Classic-Fit 5 Pocket Pants 34L Warpstreme
                                cta_text: Shop Now
                                video_hd_url: null
                                video_preview_image_url: null
                                video_sd_url: null
                                watermarked_video_hd_url: null
                                watermarked_video_sd_url: null
                                image_crops: {}
                                original_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/502544894_730202286103458_2281918677431026187_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b1PFHJ9FFYIQ7kNvwHOj4w8&_nc_oc=AdkIauXeF9h8JRPwni4ZjxyWd0aJC-OBHYGBQtVmRuSDWNw7Urmdytz10HGSGxM0YTk&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_AfuTGHTpNbMCdx6VoM1xtPDJmT2raoNAoSqXMX-z4C6w6A&oe=698EE3B2
                                resized_image_url: >-
                                  https://scontent-atl3-3.xx.fbcdn.net/v/t39.35426-6/502544894_730202286103458_2281918677431026187_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b1PFHJ9FFYIQ7kNvwHOj4w8&_nc_oc=AdkIauXeF9h8JRPwni4ZjxyWd0aJC-OBHYGBQtVmRuSDWNw7Urmdytz10HGSGxM0YTk&_nc_zt=14&_nc_ht=scontent-atl3-3.xx&_nc_gid=HFXwe8na7LHGsBMDHvyHZg&oh=00_Aft0Qz1sj7hmOM8bSRYFX7hn9QQadXfSECxREzh6Uuzeig&oe=698EE3B2
                                watermarked_resized_image_url: ''
                            body:
                              text: >-
                                Keep your practice going with stylish gear that
                                performs. As always, just leave the shipping and
                                returns to us.
                            cta_type: SHOP_NOW
                            display_format: DPA
                            link_description: >-
                              The five-pocket jean, reinvented. These
                              classic-fit pants, powered by ABC technology, give
                              you freedom of movement and all-day comfort.
                              Designed for Casual. Streamlined fit that gives
                              glutes and thighs breathing room:Our ABC
                              (Anti-Ball-Crushing) technology uses an ergonomic
                              gusset to remove tension from the crotch of our
                              pants so you can move in comfort. Hidden zippered
                              pocket, Flip up the cuffs to reveal reflective
                              details. Everyday Performance, Warpstreme Fabric.
                            link_url: >-
                              https://shop.lululemon.com/en-ca/c/whats-new/n1q0cf
                            images: {}
                            page_categories:
                              '0': Clothing (Brand)
                            page_like_count: 3444602
                            title: ABC Classic-Fit 5 Pocket Pants 32L Warpstreme
                            videos: {}
                            is_reshared: false
                            extra_links: {}
                            extra_texts: {}
                            extra_images: {}
                            extra_videos: {}
                            country_iso_code: null
                            brazil_tax_id: null
                            additional_info: null
                            ec_certificates: {}
                          collation_id: null
                          collation_count: null
                          total_active_time: null
                          spend: null
                          start_date: 1748847600
                          publisher_platform:
                            '0': FACEBOOK
                            '1': INSTAGRAM
                            '2': AUDIENCE_NETWORK
                            '3': MESSENGER
                            '4': THREADS
                          url: >-
                            https://www.facebook.com/ads/library?id=1625888671364134
                          start_date_string: '2025-06-02T07:00:00.000Z'
                          end_date_string: '2026-02-08T08:00:00.000Z'
                      searchResultsCount: 276
                      cursor: >-
                        AQHS-FE3pwZWdbQUkJSl_M2uUJAmxogaIlkF4iy2SuE7L6Mv6d7lNm87XghKtfoxVxZE
                    creditsUsed: 1
        '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).

````