# Search Items

Search and filter items on Vinted marketplace. Supports full-text search, category filtering, brand filtering, size/material/status filtering, price range, and sorting options.

- **Documentation:** [https://scrappa.co/docs/vinted-api/vinted_search](https://scrappa.co/docs/vinted-api/vinted_search)
- **API group:** Vinted API
- **Endpoint:** `GET https://scrappa.co/api/vinted/search`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `query` | string | No | Search query text (e.g., "nike shoes") |
| `country` | string | No | Country code for Vinted domain (FR, DE, BE, IT, ES, NL, etc.). Defaults to FR. |
| `page` | integer | No | Page number for pagination. Defaults to 1. |
| `per_page` | integer | No | Number of items per page (max 100). Defaults to 24. |
| `order` | string | No | Sort order: relevance, newest_first, price_low_to_high, price_high_to_low |
| `catalog_ids` | string | No | Category IDs to filter by (comma-separated) |
| `brand_ids` | string | No | Brand IDs to filter by (comma-separated) |
| `size_ids` | string | No | Size IDs to filter by (comma-separated) |
| `color_ids` | string | No | Color IDs to filter by (comma-separated) |
| `material_ids` | string | No | Material IDs to filter by (comma-separated) |
| `status_ids` | string | No | Status IDs to filter by (comma-separated) |
| `price_from` | number | No | Minimum price filter (inclusive). Items below this price will be filtered out from results. |
| `price_to` | number | No | Maximum price filter (inclusive). Items above this price will be filtered out from results. |
| `q` | string | No | Search term (1-500 characters). Alias for query. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/vinted/search?query=nike+shoes&country=DE"
```

## Example response

```json
{
    "items": [],
    "pagination": []
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
