poshmark_sold_search

Pack: poshmark-comps · Endpoint: https://gateway.pipeworx.io/poshmark-comps/mcp

Search Poshmark SOLD listings and return realized/ask-at-sale prices — the best open sold-price comp data on Poshmark (no login, no API key). Sourced live from poshmark.com/search?availability=sold_out. Returns up to ~48 results per call (one page, no pagination cursor). price is the listing price shown on the sold post, as Poshmark reports it — not an independently verified receipt.

Parameters

NameTypeRequiredDescription
querystringyesSearch text, e.g. “lululemon align leggings” or “coach tabby bag”
departmentstringnoOptional department filter as Poshmark spells it, e.g. “Women”, “Men”, “Kids”, “Home”
sort_bystringnorelevance (default) | price_desc | price_asc
limitnumbernoMax results to return, 1-48 (default 24)

Example call

Arguments

{
  "query": "lululemon align",
  "sort_by": "relevance",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/poshmark-comps/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"poshmark_sold_search","arguments":{"query":"lululemon align","sort_by":"relevance","limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('poshmark_sold_search', {
  "query": "lululemon align",
  "sort_by": "relevance",
  "limit": 10
});

More examples

{
  "query": "coach tabby bag",
  "sort_by": "price_desc",
  "limit": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "poshmark-comps": {
      "url": "https://gateway.pipeworx.io/poshmark-comps/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 5, 2026