Skip to main content
GET
/
v1
/
vinted
/
colors
List Colors
curl --request GET \
  --url https://api.example.com/v1/vinted/colors
{
  "colors": [
    {
      "id": 123,
      "title": "<string>",
      "hex": "<string>"
    }
  ]
}

Query Parameters

market
string
default:"fr"
Vinted market. Color names are localized to the market language.

Response

colors
array
Array of available colors.

Example Response

{
  "colors": [
    {
      "id": 1,
      "title": "Black",
      "hex": "#000000"
    },
    {
      "id": 3,
      "title": "Grey",
      "hex": "#808080"
    },
    {
      "id": 4,
      "title": "White",
      "hex": "#FFFFFF"
    },
    {
      "id": 7,
      "title": "Blue",
      "hex": "#0000FF"
    },
    {
      "id": 12,
      "title": "Red",
      "hex": "#FF0000"
    }
  ]
}
Each color list request costs 1 credit. Failed requests are not charged.