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

# /revolve/products/filters

> List the filters REVOLVE offers on a category or designer listing, with every value that listing accepts: designers, sizes, price brackets, colours and the attribute groups that only apply to some categories (length, cut, neckline, sleeve, sleeve style, pattern, heel height, rise and so on), plus the style shortcuts. Each group states which product search parameter its values belong to. Country, currency and language control the language the human labels come back in.

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent category or designer code)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/revolve/products/filters
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/revolve/products/filters:
    post:
      tags:
        - /revolve
      summary: /revolve/products/filters
      description: >-
        List the filters REVOLVE offers on a category or designer listing, with
        every value that listing accepts: designers, sizes, price brackets,
        colours and the attribute groups that only apply to some categories
        (length, cut, neckline, sleeve, sleeve style, pattern, heel height, rise
        and so on), plus the style shortcuts. Each group states which product
        search parameter its values belong to. Country, currency and language
        control the language the human labels come back in.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent category or designer code)
      operationId: __api_revolve_products_filters_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RevolveProductsFiltersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RevolveFilterGroup'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RevolveProductsFiltersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        country:
          $ref: '#/components/schemas/RevolveCountry'
          default: US
        currency:
          $ref: '#/components/schemas/RevolveCurrency'
          default: USD
        language:
          $ref: '#/components/schemas/RevolveLanguage'
          default: en
        count:
          type: integer
          minimum: 1
        listing:
          type: string
          minLength: 1
      type: object
      required:
        - count
        - listing
    RevolveFilterGroup:
      properties:
        '@type':
          type: string
          default: RevolveFilterGroup
        name:
          type: string
        parameter:
          type: string
        field:
          type: string
        values:
          items:
            $ref: '#/components/schemas/RevolveFilterValue'
          type: array
          default: []
      type: object
      required:
        - name
        - parameter
        - field
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RevolveCountry:
      type: string
      enum:
        - US
        - AD
        - AE
        - AF
        - AG
        - AI
        - AL
        - AM
        - AN
        - AO
        - AQ
        - AR
        - AT
        - AU
        - AW
        - AZ
        - BA
        - BB
        - BD
        - BE
        - BF
        - BG
        - BH
        - BI
        - BJ
        - BM
        - BN
        - BO
        - BR
        - BS
        - BT
        - BV
        - BW
        - BZ
        - CA
        - CC
        - CD
        - CF
        - CH
        - CK
        - CL
        - CM
        - CN
        - CO
        - CR
        - CV
        - CW
        - CX
        - CY
        - CZ
        - DE
        - DJ
        - DK
        - DM
        - DO
        - DZ
        - EC
        - EE
        - EG
        - EH
        - ER
        - ES
        - ET
        - FI
        - FJ
        - FK
        - FO
        - FR
        - GA
        - GB
        - GD
        - GE
        - GF
        - GH
        - GI
        - GL
        - GM
        - GN
        - GP
        - GQ
        - GR
        - GS
        - GT
        - GW
        - GY
        - HK
        - HM
        - HN
        - HR
        - HT
        - HU
        - IC
        - ID
        - IE
        - IL
        - IN
        - IO
        - IS
        - IT
        - JM
        - JO
        - JP
        - KE
        - KG
        - KH
        - KI
        - KM
        - KN
        - KR
        - KW
        - KY
        - KZ
        - LA
        - LB
        - LC
        - LI
        - LK
        - LS
        - LT
        - LU
        - LV
        - MA
        - MC
        - MD
        - ME
        - MG
        - MK
        - ML
        - MM
        - MN
        - MO
        - MQ
        - MR
        - MS
        - MT
        - MU
        - MV
        - MW
        - MX
        - MY
        - MZ
        - NA
        - NC
        - NE
        - NF
        - NG
        - NI
        - NL
        - 'NO'
        - NP
        - NR
        - NU
        - NZ
        - OM
        - PA
        - PE
        - PF
        - PG
        - PH
        - PK
        - PL
        - PM
        - PN
        - PT
        - PY
        - QA
        - RE
        - RO
        - RS
        - RW
        - SA
        - SB
        - SC
        - SE
        - SG
        - SH
        - SI
        - SJ
        - SK
        - SL
        - SM
        - SN
        - SR
        - ST
        - SV
        - SX
        - SZ
        - TC
        - TD
        - TF
        - TG
        - TH
        - TJ
        - TK
        - TL
        - TM
        - TN
        - TO
        - TR
        - TT
        - TV
        - TW
        - TZ
        - UA
        - UG
        - UY
        - UZ
        - VA
        - VC
        - VE
        - VG
        - VN
        - VU
        - WF
        - WS
        - YT
        - ZA
        - ZM
    RevolveCurrency:
      type: string
      enum:
        - USD
        - AED
        - ANG
        - ARS
        - AUD
        - BRL
        - BSD
        - CAD
        - CHF
        - CLP
        - CNY
        - COP
        - CZK
        - DKK
        - EUR
        - FJD
        - GBP
        - GTQ
        - HKD
        - HNL
        - HUF
        - IDR
        - ILS
        - INR
        - ISK
        - JMD
        - JPY
        - KRW
        - KWD
        - KZT
        - LBP
        - LKR
        - MAD
        - MXN
        - MYR
        - NOK
        - NZD
        - PAB
        - PEN
        - PHP
        - PKR
        - PLN
        - RON
        - RSD
        - SAR
        - SEK
        - SGD
        - THB
        - TND
        - TRY
        - TTD
        - TWD
        - UAH
        - VND
        - XAF
        - XCD
        - ZAR
    RevolveLanguage:
      type: string
      enum:
        - en
        - de
        - es
        - fr
        - it
        - pt
        - ru
        - ar
        - ja
        - ko
        - zh
        - ch
    RevolveFilterValue:
      properties:
        '@type':
          type: string
          default: RevolveFilterValue
        value:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - value
    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

````