# eBay UK Store Lookup API by Public Profile

**Use case:** 

Turn one eBay UK store link into a 40-field record with feedback totals, items sold, positive percent and member country.

## Input

```json
{
  "seller_url": "https://www.ebay.co.uk/str/musicmagpie"
}
```

## Output

```json
{
  "logo_url": {
    "label": "Logo URL",
    "format": "string"
  },
  "store_name": {
    "label": "Store Name",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  },
  "store_url": {
    "label": "Store URL",
    "format": "string"
  },
  "positive_percent": {
    "label": "Positive Percent",
    "format": "number"
  },
  "feedback_total": {
    "label": "Feedback Total",
    "format": "integer"
  },
  "is_top_rated": {
    "label": "Is Top Rated",
    "format": "boolean"
  },
  "items_sold": {
    "label": "Items Sold",
    "format": "integer"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "member_since": {
    "label": "Member Since",
    "format": "string"
  },
  "member_country": {
    "label": "Member Country",
    "format": "string"
  },
  "positive_count": {
    "label": "Positive Count",
    "format": "integer"
  },
  "neutral_count": {
    "label": "Neutral Count",
    "format": "integer"
  },
  "negative_count": {
    "label": "Negative Count",
    "format": "integer"
  },
  "positive_count_6m": {
    "label": "Positive Count 6M",
    "format": "integer"
  },
  "neutral_count_6m": {
    "label": "Neutral Count 6M",
    "format": "integer"
  },
  "negative_count_6m": {
    "label": "Negative Count 6M",
    "format": "integer"
  },
  "positive_count_1m": {
    "label": "Positive Count 1M",
    "format": "integer"
  },
  "neutral_count_1m": {
    "label": "Neutral Count 1M",
    "format": "integer"
  },
  "negative_count_1m": {
    "label": "Negative Count 1M",
    "format": "integer"
  },
  "dsr_description": {
    "label": "DSR Description",
    "format": "number"
  },
  "dsr_description_count": {
    "label": "DSR Description Ratings",
    "format": "integer"
  },
  "dsr_shipping": {
    "label": "DSR Shipping",
    "format": "number"
  },
  "dsr_shipping_count": {
    "label": "DSR Shipping Ratings",
    "format": "integer"
  },
  "dsr_delivery": {
    "label": "DSR Delivery",
    "format": "number"
  },
  "dsr_delivery_count": {
    "label": "DSR Delivery Ratings",
    "format": "integer"
  },
  "dsr_communication": {
    "label": "DSR Communication",
    "format": "number"
  },
  "dsr_communication_count": {
    "label": "DSR Communication Ratings",
    "format": "integer"
  },
  "store_description": {
    "label": "Store Description",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "is_brand_store": {
    "label": "Is Brand Store",
    "format": "boolean"
  },
  "banner_url": {
    "label": "Banner URL",
    "format": "string"
  },
  "store_slug": {
    "label": "Store Slug",
    "format": "string"
  },
  "feedback_url": {
    "label": "Feedback URL",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "marketplace_country": {
    "label": "Marketplace Country",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [eBay Seller Leads API](https://apify.com/agentx/ebay-seller-leads-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/agentx/ebay-seller-leads-api) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/agentx/ebay-seller-leads-api.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
