Skip to main content
GET
/
v1
/
vinted
/
brands
Search Brands
curl --request GET \
  --url https://api.example.com/v1/vinted/brands
{
  "brands": [
    {
      "id": 123,
      "title": "<string>",
      "slug": "<string>",
      "favourite_count": 123,
      "item_count": 123
    }
  ]
}

Query Parameters

query
string
required
Brand name to search for. Partial matches are supported.Examples: Nike, Adidas, Zara
market
string
default:"fr"
Vinted market to search brands in. Brand availability may vary by market.

Response

brands
array
Array of matching brands.

Example Response

{
  "brands": [
    {
      "id": 53,
      "title": "Nike",
      "slug": "nike",
      "favourite_count": 245000,
      "item_count": 1823456
    },
    {
      "id": 2319,
      "title": "Nike ACG",
      "slug": "nike-acg",
      "favourite_count": 8700,
      "item_count": 12340
    }
  ]
}
Each brand search request costs 1 credit. Failed requests are not charged.