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

# Shop Search

> Search TikTok Shop for products by keyword. Returns 30 products per page — use the page parameter to navigate through results.

**Credit Cost:** 1 credit per request

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


## OpenAPI

````yaml GET /v1/scrape/tiktok-shop/search
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/tiktok-shop/search:
    get:
      tags:
        - tiktok-shop
      summary: Shop Search
      description: >-
        Search TikTok Shop for products by keyword. Returns 30 products per page
        — use the page parameter to navigate through results.


        **Credit Cost:** 1 credit per request
      operationId: tiktok-shop_Shop_Search
      parameters:
        - name: query
          in: query
          description: Term you want to search for
          required: true
          schema:
            type: string
            example: shoes
        - name: page
          in: query
          description: Page number to retrieve
          required: false
          schema:
            type: integer
            example: 1
        - name: region
          in: query
          description: >-
            Region to search shop products in. Available options: US, GB, DE,
            FR, IT, ID, MY, MX, PH, SG, ES, TH, VN, BR, JP, IE
          required: false
          schema:
            type: string
            example: US
      responses:
        '200':
          description: |-
            Successful response

            **Key Response Fields:**
            - `query` — The search term used
            - `total_products` — Total number of products returned
            - `products[]` — Array of matching products:
              - `product_id` — Unique product identifier
              - `title` — Product listing title
              - `image` — Product thumbnail with CDN URLs
              - `product_price_info.currency_name` — Price currency (e.g., USD)
              - `product_price_info.currency_symbol` — Currency symbol (e.g., $)
              - `product_price_info.sale_price_decimal` — Current sale price
              - `product_price_info.sale_price_format` — Formatted sale price string
              - `rate_info` — Product rating info (if available)
              - `sold_info.sold_count` — Total units sold
              - `seller_info.seller_id` — Seller/shop unique identifier
              - `seller_info.shop_name` — Shop display name
              - `seller_info.shop_logo` — Shop logo image (if available)
              - `seo_url.canonical_url` — Product page canonical URL
              - `seo_url.slug` — URL-friendly product slug
          content:
            application/json:
              example:
                success: true
                data:
                  success: true
                  query: shoes
                  total_products: 31
                  products:
                    '0':
                      product_id: '1729385227165405539'
                      title: Test White Shoes
                      image:
                        height: 400
                        width: 400
                        uri: >-
                          tos-maliva-i-o3syd03w52-us/e14655759440eb5646d383d4b2e80c4b
                        url_list:
                          '0': >-
                            https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/e14655759440eb5646d383d4b2e80c4b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001
                          '1': >-
                            https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/e14655759440eb5646d383d4b2e80c4b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001
                      product_price_info:
                        sku_id: null
                        symbol_position: 1
                        show_currency_space: false
                        currency_show_mode: 1
                        currency_name: USD
                        currency_symbol: $
                        sale_price_decimal: '1.00'
                        sale_price_format: '1.00'
                        single_product_price_format: '1.00'
                        single_product_price_decimal: '1.00'
                        sale_price_integer_part_format: '1'
                        sale_price_decimal_part_format: '00'
                        decimal_point_symbol: .
                        promotion_deduction_details: null
                      rate_info: null
                      sold_info:
                        sold_count: 15
                      seller_info:
                        seller_id: '7494998206293379427'
                        shop_name: Madshoes
                        shop_logo: null
                      seo_url:
                        updated_at: '1770629776057'
                        canonical_url: https://www.tiktok.com/shop/pdp/1729385227165405539
                        slug: test-white-shoes
                        type: 2
                        version: 2
                credits_used: 1
                endpoint: tiktok-shop/shop_search
                note: This endpoint costs 1 credit per request
        '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).

````