Etsy - Collect by URL avatar
Etsy - Collect by URL

Pricing

$2.00 / 1,000 results

Go to Store
Etsy - Collect by URL

Etsy - Collect by URL

Developed by

AUTOScraping

AUTOScraping

Maintained by Community

Scrape Etsy product listings and variations with ease. Extract price, reviews, images, seller info and more in structured JSON. No proxy required. Try it free. Pricing: $2/1000 results.

0.0 (0)

Pricing

$2.00 / 1,000 results

0

2

2

Last modified

3 days ago

You can access the Etsy - Collect by URL programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "urls": [
12 "https://www.etsy.com/es/listing/1078680894/vestido-de-algodon-de-verano-vestido?ls=a&ref=sold_out_ad-1&pro=1&frs=1&plkey=4f35ec1b929bac001a9f329798c9ecdc68acc8e6%3A1078680894",
13 "https://www.etsy.com/listing/4295838444/womens-summer-cotton-dress-soft-casual?ls=r&ref=landingpage_similar_listing_bot-1&pro=1&frs=1&sts=1&content_source=fad25ebed6671ea3c6812326aeb9a17c%253A4e5878ef36b225089b5532e9fedd979d35fb917f&logging_key=fad25ebed6671ea3c6812326aeb9a17c%3A4e5878ef36b225089b5532e9fedd979d35fb917f",
14 "https://www.etsy.com/listing/4325742376/final-sale-summer-dress-printed-cotton?ls=a&ga_order=most_relevant&ga_search_type=all&ga_view_type=gallery&ga_search_query=loose+shirt+dresses&ref=sc_gallery-1-3&pro=1&sts=1&plkey=d0ec6c77b24160173356a89029d31c5eac6323f7%3A4325742376"
15 ]
16};
17
18// Run the Actor and wait for it to finish
19const run = await client.actor("autoscraping/etsy-product-scraper").call(input);
20
21// Fetch and print Actor results from the run's dataset (if any)
22console.log('Results from dataset');
23console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
24const { items } = await client.dataset(run.defaultDatasetId).listItems();
25items.forEach((item) => {
26 console.dir(item);
27});
28
29// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Etsy product scraper API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Etsy - Collect by URL API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

$npm install apify-client

Other API clients include: