# Get store

Read a store description, seller identity, feedback rating, followers, and sales summary.

- Platform: [eBay](https://docs.upscrape.com/docs/platforms/ebay)
- Capability ID: `ebay.store.get`
- Cost: 1 credit per request
- Maximum runtime: 180 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "store": "sunnking"
  },
  "capability": "ebay.store.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `store` | `string` | Yes | The store identifier from its eBay store URL. |

### Example input

```json
{
  "store": "sunnking"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "description": "Shop Sunnking for refurbished, clearance, and open box electronics, like tablets, PCs, laptops, cell phones, and all kinds of device accessories. We are an R2/RIOS-certified electronics recycler. Every item we sell is evaluated by our technicians according to the R2 guidelines and is classified as tested for full functions (R2 ready for reuse), tested for key functions (R2 ready for resale), or ev…",
  "feedback": "99.7% positive feedback",
  "followers": "17K followers",
  "items_sold": "587K items sold",
  "logo_url": "https://i.ebayimg.com/images/g/JQIAAOSwS7Nk05Qt/s-l140.png",
  "name": "Sunnking Sustainable Solutions",
  "seller": "sunnking",
  "store": "sunnking",
  "url": "https://www.ebay.com/str/sunnking"
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `description` | `string` | Shop Sunnking for refurbished, clearance, and open box electronics, lik… |
| `feedback` | `string` | 99.7% positive feedback |
| `followers` | `string` | 17K followers |
| `items_sold` | `string` | 587K items sold |
| `logo_url` | `string` | https://i.ebayimg.com/images/g/JQIAAOSwS7Nk05Qt/s-l140.png |
| `name` | `string` | Sunnking Sustainable Solutions |
| `seller` | `string` | sunnking |
| `store` | `string` | sunnking |
| `url` | `string` | https://www.ebay.com/str/sunnking |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
