Pullandbear APIpullandbear.com ↗
Search and browse Pull & Bear's complete product catalog across all categories, view detailed product information, and discover store locations. Find exactly what you're looking for with powerful search functionality and organized category navigation.
curl -X GET 'https://api.parse.bot/scraper/04d213ae-8a00-4982-995a-3d467f7af318/search_products?limit=5&query=jacket§ion=woman&offset=0' \ -H 'X-API-Key: $PARSE_API_KEY'
Search products by keyword within a section (woman or man). Returns paginated results with product names, prices, availability by size, color options, and images. Each result includes a product_id that can be used with get_product_details.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of products to return per request. |
| queryrequired | string | Search term (e.g. 'jacket', 'jeans', 't-shirt'). |
| offset | integer | Pagination offset (0-based index of the first result to return). |
| section | string | Product section to search within. Omitting defaults to 'woman'. |
{
"type": "object",
"fields": {
"limit": "pagination limit used",
"total": "number of results returned in this response",
"offset": "pagination offset used",
"products": "array of product summaries with product_id, name, price, old_price, colors, availability, images"
},
"sample": {
"data": {
"limit": 5,
"total": 3,
"offset": 0,
"products": [
{
"name": "Faux leather balloon jacket",
"price": 79.9,
"colors": [
{
"id": 717,
"name": "Chocolate"
}
],
"images": [
"https://static.pullandbear.net/assets/public/88c7/91f7/46534da3a46c/36889a09a08d/07700317717-K1/07700317717-K1.jpg?ts=1771518082062"
],
"old_price": null,
"product_id": "753545375",
"availability": [
{
"size": "XS",
"available": true
}
]
}
]
},
"status": "success"
}
}About the Pullandbear API
The Pullandbear API on Parse exposes 5 endpoints for the publicly available data on pullandbear.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.