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

# /poshmark/items/search

> Search Poshmark listings by keyword with department, category, brand, size, color, price and more

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/poshmark/items/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/poshmark/items/search:
    post:
      tags:
        - /poshmark
      summary: /poshmark/items/search
      description: >-
        Search Poshmark listings by keyword with department, category, brand,
        size, color, price and more


        **Price:** 1 credit
      operationId: __api_poshmark_items_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PoshmarkSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PoshmarkListingSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PoshmarkSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/PoshmarkDomain'
          default: poshmark.com
        department:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkDepartment'
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        subcategory:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        color:
          anyOf:
            - items:
                $ref: '#/components/schemas/PoshmarkColorName'
              type: array
            - type: 'null'
        price_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        condition:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkCondition'
            - type: 'null'
        shipping:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkShipping'
            - type: 'null'
        availability:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkAvailability'
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkSort'
            - type: 'null'
        query:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    PoshmarkListingSummary:
      properties:
        '@type':
          type: string
          default: PoshmarkListingSummary
        id:
          type: string
        url:
          type: string
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkPrice'
            - type: 'null'
        original_price:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkPrice'
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        size_system:
          anyOf:
            - type: string
            - type: 'null'
        colors:
          items:
            $ref: '#/components/schemas/PoshmarkColor'
          type: array
          default: []
        department:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkCategoryNode'
            - type: 'null'
        category:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkCategoryNode'
            - type: 'null'
        subcategories:
          items:
            $ref: '#/components/schemas/PoshmarkCategoryNode'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        status:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        share_count:
          type: integer
          default: 0
        like_count:
          type: integer
          default: 0
        comment_count:
          type: integer
          default: 0
        has_offer:
          type: boolean
          default: false
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkUserMini'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PoshmarkDomain:
      type: string
      enum:
        - poshmark.com
        - poshmark.ca
    PoshmarkDepartment:
      type: string
      enum:
        - Women
        - Men
        - Kids
        - Home
        - Electronics
        - Pets
        - Beauty & Wellness
    PoshmarkColorName:
      type: string
      enum:
        - Red
        - Pink
        - Orange
        - Yellow
        - Green
        - Blue
        - Purple
        - Gold
        - Silver
        - Black
        - Gray
        - White
        - Cream
        - Brown
        - Tan
    PoshmarkCondition:
      type: string
      enum:
        - all
        - nwt
    PoshmarkShipping:
      type: string
      enum:
        - free
        - discounted
    PoshmarkAvailability:
      type: string
      enum:
        - all
        - available
        - available_and_dropping_soon
        - dropping_soon
        - sold
        - not_for_sale
    PoshmarkSort:
      type: string
      enum:
        - relevance
        - just_in
        - price_high_to_low
        - price_low_to_high
    PoshmarkPrice:
      properties:
        '@type':
          type: string
          default: PoshmarkPrice
        amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        currency_symbol:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    PoshmarkColor:
      properties:
        '@type':
          type: string
          default: PoshmarkColor
        name:
          type: string
        rgb:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    PoshmarkCategoryNode:
      properties:
        '@type':
          type: string
          default: PoshmarkCategoryNode
        id:
          anyOf:
            - type: string
            - type: 'null'
        display:
          anyOf:
            - type: string
            - type: 'null'
        slug:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    PoshmarkUserMini:
      properties:
        '@type':
          type: string
          default: PoshmarkUserMini
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        display_handle:
          anyOf:
            - type: string
            - type: 'null'
        full_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````