# Countries

Get the supported Vinted countries, TLDs, and currencies. Use this free endpoint to discover valid `country` values before making paid Vinted API calls.

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

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

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/vinted/countries"
```

## Example response

```json
{
    "success": true,
    "data": {
        "countries": [
            {
                "code": "FR",
                "name": "France",
                "tld": "fr",
                "currency": "EUR"
            },
            {
                "code": "DE",
                "name": "Germany",
                "tld": "de",
                "currency": "EUR"
            },
            {
                "code": "US",
                "name": "United States",
                "tld": "com",
                "currency": "USD"
            }
        ],
        "total_countries": 19
    },
    "message": "Vinted countries retrieved successfully"
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 500 | Server Error | The countries list could not be loaded |

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