Endpoint Playground
Test Crawlora's Mercari search autocomplete 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/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial keyword to get suggestions for |
{
"code": 200,
"msg": "OK",
"data": {
"query": "nike",
"suggestions": [
"nikes shoes women",
"nikes shoes men",
"nikes",
"nikes shoes",
"Nike pro biker shorts",
"Nike biker shorts",
"nikes air max",
"Nike bike shorts",
"nikeskims",
"nikes women"
]
}
}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 search-suggestion list for a partial keyword, in the upstream's own relevance order. An empty suggestion list is a normal outcome for obscure or gibberish input. Credential-free public data sourced from Mercari's own mobile-app API using an anonymous, login-free session.
{
"code": 200,
"msg": "OK",
"data": {
"query": "nike",
"suggestions": [
"nikes shoes women",
"nikes shoes men",
"nikes",
"nikes shoes",
"Nike pro biker shorts",
"Nike biker shorts",
"nikes air max",
"Nike bike shorts",
"nikeskims",
"nikes women"
]
}
}curl "https://api.crawlora.net/api/v1/mercari/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"