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

# /petsplace/products/search

> Search and filter the Pets Place catalog. Combine a keyword with any of the catalog filters (animal/domain group, leaf category, brand, product group, health/purpose, flavor, packaging, size, weight, volume, color, promotion type, availability, price range). Leave the keyword empty to list a pure filter/category selection. Returns product cards with id, sku, gtin13, name, brand, image, price, final_price, sale_price, special_type, availability, stock, and catalog attributes, plus the canonical product URL.

**Price:** 20 credits per 100 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/petsplace/products/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/petsplace/products/search:
    post:
      tags:
        - /petsplace
      summary: /petsplace/products/search
      description: >-
        Search and filter the Pets Place catalog. Combine a keyword with any of
        the catalog filters (animal/domain group, leaf category, brand, product
        group, health/purpose, flavor, packaging, size, weight, volume, color,
        promotion type, availability, price range). Leave the keyword empty to
        list a pure filter/category selection. Returns product cards with id,
        sku, gtin13, name, brand, image, price, final_price, sale_price,
        special_type, availability, stock, and catalog attributes, plus the
        canonical product URL.


        **Price:** 20 credits per 100 results
      operationId: __api_petsplace_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PetsplaceProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PetsplaceProductSearchItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PetsplaceProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          default: ''
        count:
          type: integer
          maximum: 1000
          minimum: 1
        sort:
          $ref: '#/components/schemas/PetsplaceSearchSort'
          default: relevance
        turnover_group:
          anyOf:
            - $ref: '#/components/schemas/PetsplaceTurnoverGroup'
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        product_group:
          anyOf:
            - type: string
            - type: 'null'
        sub_product_group:
          anyOf:
            - type: string
            - type: 'null'
        health:
          anyOf:
            - type: string
            - type: 'null'
        flavor:
          anyOf:
            - type: string
            - type: 'null'
        packaging:
          anyOf:
            - $ref: '#/components/schemas/PetsplacePackaging'
            - type: 'null'
        size:
          anyOf:
            - $ref: '#/components/schemas/PetsplaceSize'
            - type: 'null'
        clothing_size:
          anyOf:
            - type: string
            - type: 'null'
        weight:
          anyOf:
            - type: string
            - type: 'null'
        volume:
          anyOf:
            - type: string
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        special_type:
          anyOf:
            - type: string
            - type: 'null'
        on_promotion:
          anyOf:
            - type: boolean
            - type: 'null'
        availability:
          anyOf:
            - $ref: '#/components/schemas/PetsplaceAvailability'
            - type: 'null'
        price_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
      type: object
      required:
        - count
    PetsplaceProductSearchItem:
      properties:
        '@type':
          type: string
          default: PetsplaceProductSearchItem
        id:
          type: string
        sku:
          anyOf:
            - type: string
            - type: 'null'
        gtin13:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        final_price:
          anyOf:
            - type: number
            - type: 'null'
        sale_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        special_type:
          anyOf:
            - type: string
            - type: 'null'
        has_promotion:
          anyOf:
            - type: boolean
            - type: 'null'
        promotion_id:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        stock:
          anyOf:
            - type: integer
            - type: 'null'
        turnover_group:
          anyOf:
            - type: string
            - type: 'null'
        sub_turnover_group:
          anyOf:
            - type: string
            - type: 'null'
        sub_turnover_group3:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
        product_group:
          anyOf:
            - type: string
            - type: 'null'
        sub_product_group:
          anyOf:
            - type: string
            - type: 'null'
        sub_product_group2:
          anyOf:
            - type: string
            - type: 'null'
        health:
          anyOf:
            - type: string
            - type: 'null'
        flavor:
          anyOf:
            - type: string
            - type: 'null'
        packaging:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        clothing_size:
          anyOf:
            - type: string
            - type: 'null'
        weight:
          anyOf:
            - type: string
            - type: 'null'
        volume:
          anyOf:
            - type: string
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PetsplaceSearchSort:
      type: string
      enum:
        - relevance
        - price_asc
        - price_desc
        - title_asc
        - title_desc
    PetsplaceTurnoverGroup:
      type: string
      enum:
        - Hond
        - Kat
        - Knaagdier
        - Vogel
        - Vis
        - Paard
        - Reptiel
        - Hengelsport
        - Duif
        - Boerderijdier
        - Buiten(Dieren)
        - Plant & Zorg
        - Werken In De Tuin
        - Vijver
        - Huis
        - Wonen & Leven
        - Kleding & Schoeisel
        - Leisure
        - Events
        - Special
    PetsplacePackaging:
      type: string
      enum:
        - Alu
        - Alukuipje
        - Blik
        - Cups
        - Doos
        - Emmer
        - Flacon
        - Fles
        - Folie
        - Pak
        - Pot
        - Pouch
        - Sachet
        - Spuitbus
        - Tetrapack
        - Tube
        - Verspack
        - Versvlees
        - Worst
        - Zak
    PetsplaceSize:
      type: string
      enum:
        - Giant
        - Large
        - Maxi
        - Medium
        - Mini
        - Regular
        - Small
        - Xlarge
        - Xsmall
    PetsplaceAvailability:
      type: string
      enum:
        - in_stock
        - out_of_stock
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````