> ## Documentation Index
> Fetch the complete documentation index at: https://docs.socq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Amazon Best Sellers

> Fetch normalized best sellers data from Amazon.

# Get Amazon Best Sellers

Fetch normalized best sellers data from Amazon.

Each successfully returned standard result costs `0.15` credits. List endpoints reserve by `results_limit` and settle against the actual result count.

## Request Body

```json theme={"system"}
{
  "urls": [
    "https://www.amazon.com/Best-Sellers-Books/zgbs/books"
  ],
  "results_limit": 3
}
```

## Use with MCP

| Interface      | Value                                                 |
| -------------- | ----------------------------------------------------- |
| REST           | `POST /v1/amazon/best-sellers`                        |
| Compact MCP    | `socq_execute` with `endpoint: "amazon/best-sellers"` |
| Typed MCP      | `socq_amazon_best_sellers`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=amazon_best_sellers`   |
| CLI            | `socq amazon best-sellers`                            |

<Info>
  A successful request returns a `task_id`. Poll it with `socq_get_task`, then read normalized records from `results.items`.
</Info>

## Result Fields

| Field                | Type            | Nullable | Description                                                              |
| -------------------- | --------------- | -------- | ------------------------------------------------------------------------ |
| `id`                 | `string`        | Yes      | Unique identifier for this result item.                                  |
| `platform`           | `string`        | No       | Platform the result belongs to, such as `instagram` or `linkedin`.       |
| `resource`           | `string`        | No       | SocQ resource represented by the result, such as `videos` or `comments`. |
| `type`               | `string`        | No       | Category of the result item, such as `video`, `post`, or `comment`.      |
| `url`                | `string`        | Yes      | Public URL of the result item when available.                            |
| `published_at`       | `string`        | Yes      | Time the source item was published, in ISO 8601 format when available.   |
| `collected_at`       | `string`        | No       | Time SocQ collected or processed this result, in ISO 8601 format.        |
| `title`              | `string`        | Yes      | Product title.                                                           |
| `text`               | `string`        | Yes      | Product description.                                                     |
| `seller`             | `object`        | Yes      | Seller or merchant associated with the item.                             |
| `seller`             | `object`        | No       | Field value in the standard result.                                      |
| `seller.id`          | `string`        | Yes      | Unique identifier of the seller.                                         |
| `seller.username`    | `string`        | Yes      | Public username or handle of the account.                                |
| `seller.name`        | `string`        | Yes      | Display name of the seller.                                              |
| `seller.url`         | `string`        | Yes      | Public URL of the seller when available.                                 |
| `seller.avatar_url`  | `string`        | Yes      | URL of the account avatar image.                                         |
| `seller.is_verified` | `boolean`       | Yes      | Whether the account is verified on the platform.                         |
| `seller.is_private`  | `boolean`       | Yes      | Whether the account is private.                                          |
| `price`              | `object`        | Yes      | Price information for the listing or product.                            |
| `price`              | `object`        | No       | Field value in the standard result.                                      |
| `price.amount`       | `number`        | Yes      | Numeric monetary amount.                                                 |
| `price.currency`     | `string`        | Yes      | Currency code or symbol reported for the monetary value.                 |
| `price.formatted`    | `string`        | Yes      | Human-readable price or salary text.                                     |
| `rating`             | `number`        | Yes      | Average product rating reported by the platform.                         |
| `reviews_count`      | `integer`       | Yes      | Number of reviews.                                                       |
| `sold_count`         | `integer`       | Yes      | Number of units sold when reported.                                      |
| `media`              | `array<object>` | Yes      | Images, videos, or other media attached to the result.                   |

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "message": "success",
  "data": {
    "task_id": "task_example",
    "public_id": "amazon/best-sellers",
    "status": "succeeded",
    "result_count": 1,
    "credits_amount": 0.15,
    "results": {
      "schema_id": "product",
      "schema_version": "1.0",
      "items": [
        {
          "id": "1668236516",
          "platform": "amazon",
          "resource": "best-sellers",
          "type": "best-seller",
          "url": "https://www.amazon.com/Theo-Golden-Novel-Allen-Levi/dp/1668236516",
          "published_at": "2026-08-17T11:40:46.699000Z",
          "collected_at": "2026-08-17T11:40:53.895762Z",
          "title": "Theo of Golden: A Novel",
          "text": "THE #1 NEW YORK TIMES BESTSELLING PHENOMENON",
          "seller": null,
          "price": {
            "amount": 12.99,
            "currency": "USD",
            "formatted": null
          },
          "rating": 4.7,
          "reviews_count": 165993,
          "sold_count": null,
          "media": [
            {
              "type": "image",
              "url": "https://m.media-amazon.com/images/I/81P0NvoRrWL._SL1500_.jpg",
              "thumbnail_url": null,
              "width": null,
              "height": null,
              "duration_seconds": null
            }
          ]
        }
      ],
      "limit": 20,
      "next_cursor": null,
      "has_more": false
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/amazon/best-sellers
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-d93e6d4f8368
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/amazon/best-sellers:
    post:
      tags:
        - amazon
      summary: Amazon Best Sellers API
      description: Collect public Amazon best sellers.
      operationId: socq_amazon_best_sellers
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 2000
                  default: 100
                urls:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public profile or content URLs.
              required:
                - urls
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
        '422':
          description: Input validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentValidationErrorResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
          required:
            - task_id
            - status
    AgentValidationErrorResponse:
      type: object
      properties:
        code:
          type: integer
          const: 422
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            details:
              type: object
          required:
            - message
            - type
      required:
        - code
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````