# Ebay

> eBay

- Skill: `spike-faye-lei/ebay` (Agent Skill, multi-file: 9 files)
- Install (CLI): `npx skillmds@latest add spike-faye-lei/ebay`
- Raw SKILL.md: https://api.skillmd.com/api/skills/spike-faye-lei/ebay/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: spike-faye-lei (https://skillmd.com/u/spike-faye-lei)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/spike-faye-lei/ebay

---

# eBay

## Overview
eBay — world's largest auction and marketplace platform. E-commerce archetype.

## Workflows

### Search and view item
1. `searchItems(keywords)` -> results with `itemId`
2. `getItemDetail(itemId)` -> full item info (title, price, bids, condition, shipping)

### Research a seller
1. `searchItems(keywords)` -> results with seller info
2. `getItemDetail(itemId)` -> seller card with `storeSlug`
3. `getSellerProfile(username)` -> feedback score, items sold, followers

## Operations

| Operation | Intent | Key Input | Key Output | Notes |
|-----------|--------|-----------|------------|-------|
| searchItems | search listings by keyword | keywords | itemId, title, price, condition, image | entry point, paginated |
| getItemDetail | full item details | itemId <- searchItems | title, price, condition, seller, shipping, returns, brand, model, images | LD+JSON Product schema |
| getSellerProfile | seller reputation | username <- getItemDetail.seller.storeSlug | storeName, positiveFeedback, itemsSold, followers | uses /str/ URL |

## Quick Start

```bash
# Search for items
openweb ebay exec searchItems '{"keywords": "vintage watch"}'

# Get item details (use itemId from search results)
openweb ebay exec getItemDetail '{"itemId": "358422352053"}'

# Get seller profile (use storeSlug from item detail)
openweb ebay exec getSellerProfile '{"username": "freegeekportland"}'
```

