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

> Get a Poshmark seller (closet) profile by username or closet URL

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/poshmark/users
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/users:
    post:
      tags:
        - /poshmark
      summary: /poshmark/users
      description: |-
        Get a Poshmark seller (closet) profile by username or closet URL

        **Price:** 1 credit

        **⚠️ Common errors:** 412: User not found
      operationId: __api_poshmark_users_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PoshmarkUserPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PoshmarkUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PoshmarkUserPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/PoshmarkDomain'
          default: poshmark.com
        user:
          type: string
          minLength: 1
      type: object
      required:
        - user
    PoshmarkUser:
      properties:
        '@type':
          type: string
          default: PoshmarkUser
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        display_handle:
          anyOf:
            - type: string
            - type: 'null'
        full_name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        college_year:
          anyOf:
            - type: string
            - type: 'null'
        home_domain:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        follower_count:
          type: integer
          default: 0
        following_count:
          type: integer
          default: 0
        brands_following_count:
          type: integer
          default: 0
        listing_count:
          type: integer
          default: 0
        share_count:
          type: integer
          default: 0
        seller_rating_count:
          type: integer
          default: 0
        seller_rating_value:
          type: integer
          default: 0
        seller_5_star_rating_count:
          type: integer
          default: 0
        seller_order_count:
          type: integer
          default: 0
        items_sold_display:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        last_active_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PoshmarkDomain:
      type: string
      enum:
        - poshmark.com
        - poshmark.ca
    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

````