Endpoint Playground
Test Crawlora's Search Otto.de products 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/otto/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Product search keyword | |
| offset | integer | No | Result offset; non-negative multiple of 109 |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"offset": 1,
"products": [
{
"brand": "sample",
"currency": "sample",
"image": "sample",
"name": "sample",
"price": 1.23,
"product_id": "sample-id",
"url": "https://example.com/resource",
"variation_id": "sample-id"
}
],
"query": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}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.
Searches Otto.de's public catalogue and returns the server-rendered product cards. offset advances by Otto's fixed 109-card page size; valid values are 0, 109, 218, and so on.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"offset": 1,
"products": [
{
"brand": "sample",
"currency": "sample",
"image": "sample",
"name": "sample",
"price": 1.23,
"product_id": "sample-id",
"url": "https://example.com/resource",
"variation_id": "sample-id"
}
],
"query": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/otto/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"