Swappa Prices

live Markets

Daily used-device prices and realized sale comps from Swappa — active-listing averages plus actual sold prices by storage/variant.

3 tools
0ms auth
free tier 50 calls/day

Tools

search_device

Find Swappa device product slugs by free-text name (e.g. "iphone 15", "galaxy s24", "macbook air"). Returns matching products with their slug (needed by device_prices / recent_sales) and current start

No parameters required.

Try it
device_prices

Current Swappa prices for a device: starting price, average price, and a breakdown table by variant (carrier/color/storage) with active-listing average and trade-in value. Accepts either a free-text d

No parameters required.

Try it
sale_prices

Average REALIZED SALE price (not list price) per storage/variant for a device, updated daily, plus a sample of individual recent sold listings with date, condition, carrier, storage and price. This is

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/swappa-prices/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/swappa-prices/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_device","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_device", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("daily used-device prices and realized sale comps from swappa — active-listing averages plus actual sold prices by storage/variant");