Back to Prompts

Depop Product Listings Data

vytenis kaubre avatar

Vytenis Kaubrė

Last updated on

2025-05-29

3 min read

OxyCopilot converts English prompts into ready-to-use scraping and parsing code that runs on Oxylabs’ infrastructure. In this tutorial, you’ll learn how to fetch public product listings from Depop—from writing your prompt to sending an API request.

First, create an account on the Oxylabs dashboard, claim your free trial (or select a plan), and set up Web Scraper API credentials. The Getting Started tab covers each step.

Summary

Input prompt

Collecting product data from Depop requires a well-structured prompt for OxyCopilot. Here's a sample that specifies exactly which product information to gather from each Depop search result:

Parse the product listings page. From each product card, extract:
- Product link
- Price
- Image link
- Brand name

We regularly update this tutorial, but errors may still occur. Feel free to regenerate the prompt or contact us if you need assistance.

An overview of OxyCopilot after providing all the necessary details to get results

Output

Once you submit your prompt, you'll receive structured JSON results with scraped Depop data as shown below:

{
    "product_listings": [
        {
            "price": "$5.00",
            "brand_name": "Kobashi Studio",
            "image_link": "https://media-photos.depop.com/b1/50043538/2378749032_b579253b5e3d48289355cd545f06518f/P8.jpg",
            "product_link": "/products/madiecarp-beige-koba-slippers-brand-new/"
        },
        {
            "price": "$25.00",
            "brand_name": "AusWooli Ugg Boots",
            "image_link": "https://media-photos.depop.com/b1/51081003/2426756421_eb67a6b2435a4e45bb336544a8728bb8/P8.jpg",
            "product_link": "/products/bianey_02-ugg-slides-size-4-never/"
        },
        {
            "price": "$10.00",
            "brand_name": "Other",
            "image_link": "https://media-photos.depop.com/b1/49326827/2405190775_7dc4d44f18ad4b2097efa4b6cd283e63/P8.jpg",
            "product_link": "/products/paigemacdonald1-womens-report-grey-leather-lace/"
        },
        {
            "price": "$100.00",
            "brand_name": "UGG",
            "image_link": "https://media-photos.depop.com/b1/308291381/2403866402_cae2cff30a7a4ffc82b6fcf06a4a7c84/P8.jpg",
            "product_link": "/products/best_deals0-uggs-tazz-beige-suede/"
        },
        {
            "price": "$15.00",
            "brand_name": "Sam Edelman",
            "image_link": "https://media-photos.depop.com/b1/43935859/2399666587_f6f23ca8dd8b415fb9762624ceb60358/P8.jpg",
            "product_link": "/products/clarajdillon-sam-edelman-tan-leather-pointed/"
        },
        {
            "price": "$37.00",
            "brand_name": "Other",
            "image_link": "https://media-photos.depop.com/b1/31088176/2392398018_181cc396d4e74797999bd81e93fa6df3/P8.jpg",
            "product_link": "/products/domora-black-faux-fur-boots-fauxfurboots/"
        },
        {
            "price": "$15.00",
            "brand_name": "Vans",
            "image_link": "https://media-photos.depop.com/b1/386635003/2372657602_f7f86dc3db624c4fa0f3ab0f240dfc55/P8.jpg",
            "product_link": "/products/cameronrainee-9-in-womens-75-in/"
        },
        {
            "price": "$25.00",
            "brand_name": "Talbots",
            "image_link": "https://media-photos.depop.com/b1/17232826/2529017247_bf2983e556bb4f2f8357409dc10f29cc/P8.jpg",
            "product_link": "/products/w3ndyy-talbots-brown-suede-wedge-heels/"
        },
        {
            "price": "$60.00",
            "brand_name": "Steve Madden",
            "image_link": "https://media-photos.depop.com/b1/374646575/2558801350_3819ccf5930d4f46a9466f023b92c316/P8.jpg",
            "product_link": "/products/tiagreen663-steve-madden-pink-heels-only/"
        },
        {
            "price": "$7.50",
            "brand_name": "Other",
            "image_link": "https://media-photos.depop.com/b1/23054274/2509381877_ba2b87834e2c4361b7ddc70b30cac000/P8.jpg",
            "product_link": "/products/madisondd27-grinch-slippers-never-worn-size/"
        },
        {
            "price": "$35.00",
            "brand_name": "Disney",
            "image_link": "https://media-photos.depop.com/b1/7325525/2350157651_d40d7843644b4e71b4161527b7fef9e1/P8.jpg",
            "product_link": "/products/unc0mm0n_sh0ppin-vintage-90s-disney-winnie-the/"
        },
        {
            "price": "$12.00",
            "brand_name": "Windsor",
            "image_link": "https://media-photos.depop.com/b1/38885426/2410340501_a895849391124097a146271785b43ef3/P8.jpg",
            "product_link": "/products/jaslynsells-hot-pink-high-heels-with/"
        },
        {
            "price": "$23.00",
            "brand_name": "Other",
            "image_link": "https://media-photos.depop.com/b1/227363238/2578246037_16a3fe35f81d4d70a8ac55e4e9d82122/P8.jpg",
            "product_link": "/products/mrsmcgrady757-mean-girls-13-going-on/"
        },
        {
            "price": "$20.00",
            "brand_name": "BCBGeneration",
            "image_link": "https://media-photos.depop.com/b1/34239533/2389888694_941e054a29264b97afd0667371da1279/P8.jpg",
            "product_link": "/products/oliviafeli-roya-blue-suede-wedges-with/"
        },
        {
            "price": "$10.00",
            "brand_name": "Disney",
            "image_link": "https://media-photos.depop.com/b1/53430120/2358006893_7fe964f310e1440daa4e765b614aa651/P8.jpg",
            "product_link": "/products/kacypop-the-nightmare-before-christmas-socks/"
        },
        {
            "price": "$20.00",
            "brand_name": "Sorel",
            "image_link": "https://media-photos.depop.com/b1/18336754/2389258417_8bbd406de5974100897c117b15c43682/P8.jpg",
            "product_link": "/products/hiddentreasures24-soft-and-warm-sorel-grey/"
        },
        {
            "price": "$18.00",
            "brand_name": "Converse",
            "image_link": "https://media-photos.depop.com/b1/22510578/2558262334_0beb4d2e0fc041a9940accb74a754a40/P8.jpg",
            "product_link": "/products/pbmc_4-converse-chuck-taylor-all-star-ad5e/"
        },
        {
            "price": "$28.00",
            "brand_name": "Aerosoles",
            "image_link": "https://media-photos.depop.com/b1/257411190/2369913737_9c8be6d44ae445c18b5ba136e27cab0b/P8.jpg",
            "product_link": "/products/thomasanialocklear74-aerosoles-womens-shoes-size-95/"
        },
        {
            "price": "$124.10",
            "brand_name": "Adidas",
            "image_link": "https://media-photos.depop.com/b1/4906532/2410298830_badea45888de41cdbceaa7e0d37a7622/P8.jpg",
            "product_link": "/products/swirlymist-leopard-print-shoes-from-adidas/"
        },
        {
            "price": "$20.00",
            "brand_name": "Marc Fisher",
            "image_link": "https://media-photos.depop.com/b1/46674788/2331037614_a1c99cfe5891477aaba0118441ede658/P8.jpg",
            "product_link": "/products/cherrydiscostar-marc-fisher-leopard-print-knee/"
        },
        {
            "price": "$15.00",
            "brand_name": "Charlotte Russe",
            "image_link": "https://media-photos.depop.com/b1/43135639/2335046022_c97025b8a4414cf7973f18a16f9b49ac/P8.jpg",
            "product_link": "/products/sophialik-charlotte-russe-black-suede-open/"
        },
        {
            "price": "$20.00",
            "brand_name": "Other",
            "image_link": "https://media-photos.depop.com/b1/20920471/2404443800_7b31f67d58d24fa4a9915f7ade25d769/P8.jpg",
            "product_link": "/products/roscoesmama-brown-leather-slip-on-shoes-leathershoes/"
        }
    ]
}

Schema

Along with the parsing logic, OxyCopilot provides a schema outlining the data structure (object types, field names, and descriptions). It helps AI understand the requirements. You can also modify this schema to customize the parsing behavior.

Object type Name Description
Array of objects product_listings List of product cards.
String product_link
String price
String image_link
String brand_name

Try OxyCopilot

Test our AI for free and see how it fits your needs

Try OxyCopilot

Test our AI for free and see how it fits your needs