# Item Shipping

Get available shipping options and costs for a specific item.

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

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

## Example request

```bash
#!/bin/bash

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

## Example response

```json
{
    "shipping": []
}
```

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