# Seiko Watch Buy It Now Listings with Seller Ratings

**Use case:** 

Seiko watch buy it now listings on Yahoo Auctions Japan let import buyers skip bidding and purchase at a fixed price right away. This example searches for Seiko watches, filters to buy-it-now only, and scrapes each item's detail page for the seller's rating breakdown, feedback percentage, and shipping terms. Built for import buyers who need to vet seller trust first.

## Input

```json
{
  "searchQueries": [
    "Seiko watch"
  ],
  "startUrls": [],
  "platformScope": "yahoo_auction",
  "condition": [],
  "sortOrder": "relevance",
  "buyItNowOnly": true,
  "hasBidsOnly": false,
  "scrapeItemDetails": true,
  "maxItems": 15,
  "categoryId": "",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "sellerRatingGood": {
    "label": "Good Ratings",
    "format": "number"
  },
  "sellerRatingNormal": {
    "label": "Neutral Ratings",
    "format": "number"
  },
  "sellerRatingBad": {
    "label": "Bad Ratings",
    "format": "number"
  },
  "sellerFeedbackPercentGood": {
    "label": "% Good Feedback",
    "format": "number"
  },
  "shippingPaidBy": {
    "label": "Shipping Paid By",
    "format": "string"
  },
  "estimatedShippingDays": {
    "label": "Est. Shipping Days",
    "format": "string"
  },
  "exportRestrictionNote": {
    "label": "Export Restriction",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Buyee Scraper: Yahoo Auctions & Mercari Japan Data](https://apify.com/getascraper/buyee-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/buyee-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/getascraper/buyee-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
