Skip to main content
GET
/
v1
/
vinted
/
markets
List Markets
curl --request GET \
  --url https://api.example.com/v1/vinted/markets
{
  "markets": [
    {
      "code": "<string>",
      "title": "<string>",
      "domain": "<string>",
      "currency": "<string>"
    }
  ]
}

Response

markets
array
Array of supported Vinted markets.

Example Response

{
  "markets": [
    {
      "code": "fr",
      "title": "France",
      "domain": "vinted.fr",
      "currency": "EUR"
    },
    {
      "code": "de",
      "title": "Germany",
      "domain": "vinted.de",
      "currency": "EUR"
    },
    {
      "code": "uk",
      "title": "United Kingdom",
      "domain": "vinted.co.uk",
      "currency": "GBP"
    },
    {
      "code": "us",
      "title": "United States",
      "domain": "vinted.com",
      "currency": "USD"
    }
  ]
}
Each markets list request costs 1 credit. Failed requests are not charged.