# Similar Items

Get items similar to a specific item, typically from the same seller or category.

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

## 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 |
| --- | --- | --- | --- |
| `item_id` | string | Yes | The Vinted item ID |
| `country` | string | No | Country code for Vinted domain. Defaults to FR. |
| `page` | integer | No | Page number for pagination. Defaults to 1. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/vinted/similar-items?item_id=1234567890"
```

## Example response

```json
{
    "code": 0,
    "items": [],
    "pagination": {
        "current_page": 1,
        "total_pages": 5,
        "total_entries": 100
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 404 | Error | Item not found - The requested item ID does not exist on Vinted |
| 422 | Error | Validation failed - Check item_id (required, max 50 chars), page (min 1), and country (must be valid country code) parameters |
| 500 | Error | Vinted API error or service temporarily unavailable - Please try again later |

## 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)
