# New arrivals in women's tops on Target

**Use case:** 

Scrapes Target.com search for `womens tops` sorted by newest, up to 100 products, capturing title, brand, price, promotions, rating, availability and image. Change `keyword` and keep `sort_by` on newest to track fresh inventory in any category.

## Input

```json
{
  "keyword": "womens tops",
  "startUrl": "",
  "sort_by": "newest",
  "results_wanted": 100,
  "max_pages": 10,
  "include_sponsored": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "tcin": {
    "label": "TCIN",
    "format": "text"
  },
  "formatted_current_price": {
    "label": "Price",
    "format": "text"
  },
  "current_retail": {
    "label": "Price (numeric)",
    "format": "number"
  },
  "rating_average": {
    "label": "Rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Ratings",
    "format": "number"
  },
  "shipping_availability": {
    "label": "Shipping",
    "format": "text"
  },
  "is_marketplace": {
    "label": "Marketplace",
    "format": "boolean"
  },
  "item_type": {
    "label": "Item type",
    "format": "text"
  },
  "buy_url": {
    "label": "Product URL",
    "format": "link"
  },
  "primary_image_url": {
    "label": "Image",
    "format": "link"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "page": {
    "label": "Page",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Target Product Scraper](https://apify.com/parsebird/target-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/target-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/parsebird/target-product-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
