Etsy Shop Products API
Scrape Etsy Shop Products data with one API call. Returns one page of listings from an Etsy shop, 36 per page, each with listing id, title, price, original price where discounted, image, shop name, and listing URL. Pass the shop name (AceElegance) or the shop URL. Sort by most_recent (default), price_low, or price_high. The result total Etsy reports equals the page size, so it is not returned: paginate until a page comes back short. Feed a returned listing id into GET /v1/etsy/product for the full listing.
Last updated September 2026Maintained by the SocialCrawl team
Returns one page of listings from an Etsy shop, 36 per page, each with listing id, title, price, image, and shop name.
Use it to walk a shop catalogue. Paginate until a page comes back short. Feed a listing id into product for the full listing.
Searching 54 platforms in parallel
What can you do with the Shop Products API?
The Shop Products endpoint gives you structured Etsy data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/etsy/shop/products"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/etsy/shop/products",
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/etsy/shop/products",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| id | No | Etsy shop name, the path in etsy.com/shop/AceElegance. Shop names also come back on every product as product.seller. |
| url | No | Full Etsy shop URL, for example https://www.etsy.com/shop/AceElegance or https://aceelegance.etsy.com. |
| page | No | Page number, starting at 1. Prefer the universal cursor parameter. |
| limit | No | Listings per page, 1 to 36. Default 36. |
| sort_by | No | Result ordering: most_recent (default), price_low, or price_high. (most_recent | price_low | price_high) |
| currency | No | ISO 4217 currency code for displayed prices. Default USD. |
How does the Etsy Shop Products API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 54 platforms covering 10B+ monthly active users.
One schema, every platform
Query 54 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Ready to scrape Etsy Shop Products data?
Get your API key and start pulling Etsy data in under 60 seconds.
