Metadata-Version: 2.4
Name: fetch-price
Version: 1.0.1
Summary: Live UK marketplace product search for AI agents. eBay UK live via Browse API; Amazon UK rolling out. Normalised JSON, affiliate links included.
License: MIT
Project-URL: Homepage, https://fetch-price.com
Project-URL: Repository, https://github.com/fusionx212/fetch-price
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28

<!-- mcp-name: io.github.fusionx212/fetch-price -->

# fetch-price

Live UK marketplace product search for AI agents and humans. One call returns real items
with real prices, normalised JSON, and affiliate-tracked buy links. eBay UK is live via the
official Browse API; Amazon UK is rolling out.

```python
pip install fetch-price
```

```python
from fetch_price import FetchPrice

fp = FetchPrice()  # keyless free tier: 50 lookups/month
result = fp.search("portable air conditioner", max_results=3, max_price=300)
for p in result.products:
    print(f"{p.name}: £{p.price} ({p.network}) -> {p.url}")
```

With an API key (higher limits, BYOK affiliate routing):

```python
fp = FetchPrice(api_key="fp_...")  # or set FETCH_PRICE_API_KEY
```

- Docs: https://fetch-price.com/docs
- Get a key: https://fetch-price.com/docs#get-key
- Agent card (A2A): https://fetch-price.com/.well-known/agent-card.json
- MCP server + JS SDK: https://github.com/fusionx212/fetch-price

MIT licence.

