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

# /faire/brands/search

> List Faire brands (suppliers), optionally within a category via navigation_path, with filters (brand values, ships-from, lead time, American brands, sort). Returns brand cards with minimum order amount, location, lead time, product counts and rating.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/faire/brands/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/faire/brands/search:
    post:
      tags:
        - /faire
      summary: /faire/brands/search
      description: >-
        List Faire brands (suppliers), optionally within a category via
        navigation_path, with filters (brand values, ships-from, lead time,
        American brands, sort). Returns brand cards with minimum order amount,
        location, lead time, product counts and rating.


        **Price:** 1 credit
      operationId: __api_faire_brands_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FaireBrandsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FaireSearchBrand'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FaireBrandsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        country:
          $ref: '#/components/schemas/FaireCountry'
          default: USA
        navigation_path:
          type: string
          default: All Brands
        count:
          type: integer
          minimum: 1
        brand_values:
          items:
            $ref: '#/components/schemas/FaireBrandListingValue'
          type: array
          default: []
        ships_from:
          items:
            $ref: '#/components/schemas/FaireLocation'
          type: array
          default: []
        lead_time:
          anyOf:
            - $ref: '#/components/schemas/FaireLeadTime'
            - type: 'null'
        american_brands:
          type: boolean
          default: false
        sort:
          anyOf:
            - $ref: '#/components/schemas/FaireBrandSort'
            - type: 'null'
      type: object
      required:
        - count
    FaireSearchBrand:
      properties:
        '@type':
          type: string
          default: FaireSearchBrand
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        minimum_order_amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        based_in_country:
          anyOf:
            - type: string
            - type: 'null'
        ships_from_country:
          anyOf:
            - type: string
            - type: 'null'
        lower_bound_lead_time_days:
          anyOf:
            - type: integer
            - type: 'null'
        upper_bound_lead_time_days:
          anyOf:
            - type: integer
            - type: 'null'
        active_products_count:
          anyOf:
            - type: integer
            - type: 'null'
        new_products_count:
          anyOf:
            - type: integer
            - type: 'null'
        categories:
          anyOf:
            - type: string
            - type: 'null'
        is_top_shop:
          type: boolean
          default: false
        is_zip_code_protection_enabled:
          type: boolean
          default: false
        has_new_products:
          type: boolean
          default: false
        average_rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        maker_values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FaireCountry:
      type: string
      enum:
        - USA
        - GBR
        - AUS
        - FRA
        - DEU
        - ITA
        - ESP
        - NLD
        - PRT
        - SWE
        - DNK
    FaireBrandListingValue:
      type: string
      enum:
        - eco_friendly
        - hand_made
        - not_sold_on_amazon
        - organic
        - women_owned
    FaireLocation:
      type: string
      enum:
        - usa
        - gbr
        - can
        - aus
        - european_union
        - rest_of_europe
        - africa
        - asia
        - oceania
        - south_america
    FaireLeadTime:
      type: string
      enum:
        - three_or_less_days
        - six_or_less_days
        - nine_or_less_days
        - fourteen_or_less_days
    FaireBrandSort:
      type: string
      enum:
        - score_desc
        - first_active_at_desc
        - minimum_asc
        - name_asc
        - name_desc
    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

````