Target

Intro

You can get Target results by providing your own URLs to our service. We can return the HTML for any Target page you like. Additionally, we can deliver structured (parsed) output for Target product, search, and vendor pages.

Please note that you will scrape Target by employing the universal_ecommerce source. To learn about all the various ways you can fine-tune this source, please visit this page.

Input

The example below illustrates how you can get a parsed Target product page result.

{
    "source": "universal_ecommerce", 
    "url": "https://www.target.com/p/adidas-scan-to-train-performance-utility-strength-steel-foldable-training-workout-home-gym-flat-weight-bench-with-452-pound-max-load-black/-/A-87036882#lnk=sametab", 
    "geo_location": "United States",
    "render": "html",
    "parse": true
}

The example uses the Realtime integration method. If you would like to use some other integration method in your query (e.g. Push-Pull or Proxy Endpoint), refer to the integration methods section.

You can always write your own parsing instructions with Custom Parser feature and get structured data.

Output

After executing the code example above, you can expect to get an output similar to this:

{
    "results": [
        {
            "content": {
                "url": "https://www.target.com/p/adidas-scan-to-train-performance-utility-strength-steel-foldable-training-workout-home-gym-flat-weight-bench-with-452-pound-max-load-black/-/A-87036882#lnk=sametab",
                "brand": {
                    "href": "/b/adidas/-/N-5t8mn",
                    "name": "Shop all Adidas"
                },
                "price": 72.09,
                "title": "adidas Scan to Train Performance Utility Strength Steel Foldable Training Workout Home Gym Flat Weight Bench with 452 Pound Max Load, Black",
                "category": "Target/Sports & Outdoors/Exercise & Fitness/Strength Training",
                "currency": "USD",
                "description": "Save yourself the trouble of trekking to the gym or just get a few extra reps in between workouts with the adidas Performance Flat Utility Weight Bench. This strength training bench is a perfect addition to a home gym for all athletes.\n\nExpand your training potential with this flat bench training cornerstone. This flat bench is made with comfortable, 2.5-inch thick high-density foam that provides support and comfort while you work out. The stylish PU cover is designed to make maintenance and cleaning up easy. Simply wipe clean after a workout to maintain the longevity of the bench. The thick and sturdy steel frame ensures that you will have a stable foundation that can load up to 452 pounds of weight. Train on this 452-pound maximum load to increase your training for consistent progression. This flat bench comes with instructions for easy assembly, so set up your home gym weight bench with ease. Features 'Scan to Train' with full detailed training information to guide your workouts, simply scan the QR code for the videos.\n\nWork out and get buff in the comfort of your home with the adidas Performance Flat Utility Weight Bench.",
                "rating_score": 0,
                "specifications": [
                    {
                        "dimensions_overall": "46.85 inches (H) x 19.09 inches (W) x 16.54 inches (D)"
                    },
                    {
                        "weight": "30.86 pounds"
                    },
                    {
                        "assembly_details": "Adult Assembly Required, Some Tools Provided"
                    },
                    {
                        "tcin": "87036882"
                    },
                    {
                        "upc": "885652018463"
                    },
                    {
                        "origin": "made in the USA or imported"
                    }
                ],
                "parse_status_code": 12000,
                "product_offer_type": "Sale"
            },
            "created_at": "2022-11-18 08:57:28",
            "updated_at": "2022-11-18 08:57:49",
            "page": 1,
            "url": "https://www.target.com/p/adidas-scan-to-train-performance-utility-strength-steel-foldable-training-workout-home-gym-flat-weight-bench-with-452-pound-max-load-black/-/A-87036882#lnk=sametab",
            "job_id": "6999294495850240001",
            "status_code": 200,
            "parser_type": "target_product"
        }
    ]
}

Last updated