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

> Get a Poshmark listing by ID or URL

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/poshmark/items
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:
    post:
      tags:
        - /poshmark
      summary: /poshmark/items
      description: |-
        Get a Poshmark listing by ID or URL

        **Price:** 1 credit

        **⚠️ Common errors:** 412: Listing not found
      operationId: __api_poshmark_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PoshmarkListingPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PoshmarkListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PoshmarkListingPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/PoshmarkDomain'
          default: poshmark.com
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    PoshmarkListing:
      properties:
        '@type':
          type: string
          default: PoshmarkListing
        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'
        sizes:
          items:
            $ref: '#/components/schemas/PoshmarkListingSize'
          type: array
          default: []
        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: []
        style_tags:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            $ref: '#/components/schemas/PoshmarkVideo'
          type: array
          default: []
        status:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        origin_domain:
          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'
        likers:
          items:
            $ref: '#/components/schemas/PoshmarkUserMini'
          type: array
          default: []
        comments:
          items:
            $ref: '#/components/schemas/PoshmarkComment'
          type: array
          default: []
      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
    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
    PoshmarkListingSize:
      properties:
        '@type':
          type: string
          default: PoshmarkListingSize
        size:
          anyOf:
            - type: string
            - type: 'null'
        size_system:
          anyOf:
            - type: string
            - type: 'null'
        quantity_available:
          type: integer
          default: 0
        quantity_reserved:
          type: integer
          default: 0
        quantity_sold:
          type: integer
          default: 0
      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
    PoshmarkVideo:
      properties:
        '@type':
          type: string
          default: PoshmarkVideo
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: integer
            - 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
    PoshmarkComment:
      properties:
        '@type':
          type: string
          default: PoshmarkComment
        id:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - $ref: '#/components/schemas/PoshmarkUserMini'
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - 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

````