# Get seller

Return an Amazon seller profile and its public feedback summary.

- Platform: [Amazon Commerce](https://docs.upscrape.com/docs/platforms/amazon)
- Capability ID: `amazon.seller.get`
- Cost: 1 credit per request
- Maximum runtime: 45 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": {
    "seller_id": "A151FB8X73UXPJ"
  },
  "capability": "amazon.seller.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `seller_id` | `string` | Yes | Seller identifier. |

### Example input

```json
{
  "seller_id": "A151FB8X73UXPJ"
}
```

## 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": "Service with a smile! Gamer Girlz LLC loves making our customers happy by providing the quickest service & highest quality products. Every order is packaged with care & includes a special THANK YOU for choosing Gamer Girlz to provide you with the first class shopping experience you deserve!",
  "feedback_count": 50,
  "name": "Gamer Girlz Online",
  "positive_percent": 74,
  "rating": 4,
  "seller_id": "A151FB8X73UXPJ",
  "url": "https://www.amazon.com/sp?seller=A151FB8X73UXPJ"
}
```
### 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` | Service with a smile! Gamer Girlz LLC loves making our customers happy … |
| `feedback_count` | `integer` | 50 |
| `name` | `string` | Gamer Girlz Online |
| `positive_percent` | `integer` | 74 |
| `rating` | `integer` | 4 |
| `seller_id` | `string` | A151FB8X73UXPJ |
| `url` | `string` | https://www.amazon.com/sp?seller=A151FB8X73UXPJ |

## 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)
