Endpoint Playground
Test Crawlora's Mercari home API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/mercari/home" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"id": "m31162625332",
"url": "https://www.mercari.com/us/item/m31162625332",
"title": "Lululemon Align tank",
"thumbnail_url": "https://u-mercari-images.mercdn.net/photos/m31162625332_1.jpg?1783611695",
"price_cents": 4000,
"condition_code": 1,
"num_likes": 1972,
"seller_id": "319514857",
"created_at_unix": 1783611695
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Mercari's own curated home-feed recommendations: normalized listing summaries (title, price, thumbnail, condition, seller). Credential-free public data sourced from Mercari's own mobile-app API using an anonymous, login-free session.
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"id": "m31162625332",
"url": "https://www.mercari.com/us/item/m31162625332",
"title": "Lululemon Align tank",
"thumbnail_url": "https://u-mercari-images.mercdn.net/photos/m31162625332_1.jpg?1783611695",
"price_cents": 4000,
"condition_code": 1,
"num_likes": 1972,
"seller_id": "319514857",
"created_at_unix": 1783611695
}
]
}
}curl "https://api.crawlora.net/api/v1/mercari/home" \
-H "x-api-key: $CRAWLORA_API_KEY"