# Power tools: buy on eBay.de, sell on eBay.it

**Use case:** 

Bosch and Makita cordless tools listed on eBay.de with shipping to Italy, compared with current asking prices on eBay.it; net margin after fees and shipping. Replace the queries with your products.

## Input

```json
{
  "queries": [
    "Bosch GSR 12V-35",
    "Makita DDF083",
    "Bosch GBH 18V-26"
  ],
  "sourceMarketplace": "EBAY_DE",
  "destinationMarketplace": "EBAY_IT",
  "condition": "NEW",
  "minNetMargin": 10,
  "minNetMarginPercent": 15,
  "minComparables": 3,
  "sellerType": "private",
  "onlyNew": false,
  "stateStoreName": "ebay-cross-market-state",
  "titleSimilarity": "0.45",
  "sourcePages": 1,
  "destinationPages": 1,
  "maxResults": 0,
  "maxApiCalls": 60
}
```

## Output

```json
{
  "netMargin": {
    "label": "Net margin",
    "format": "number"
  },
  "netMarginPercent": {
    "label": "Net %",
    "format": "number"
  },
  "confidence": {
    "label": "Confidence",
    "format": "string"
  },
  "buy.title": {
    "label": "Buy this",
    "format": "text"
  },
  "buy.landedInDestinationCurrency": {
    "label": "Landed cost",
    "format": "number"
  },
  "sell.comparables.median": {
    "label": "Sells for (median)",
    "format": "number"
  },
  "sell.comparables.count": {
    "label": "Comparables",
    "format": "number"
  },
  "buy.sellerCountry": {
    "label": "From",
    "format": "text"
  },
  "buy.url": {
    "label": "Listing",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [eBay Cross-Market Price Finder - Buy Abroad, Net Margin (API)](https://apify.com/bruco3/ebay-cross-market-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bruco3/ebay-cross-market-finder.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/bruco3/ebay-cross-market-finder.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`).
