> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Brands

> Search for Vinted brand IDs by name.

## Query Parameters

<ParamField query="query" type="string" required>
  Brand name to search for. Partial matches are supported.

  Examples: `Nike`, `Adidas`, `Zara`
</ParamField>

<ParamField query="market" type="string" default="fr">
  Vinted market to search brands in. Brand availability may vary by market.
</ParamField>

## Response

<ResponseField name="brands" type="array">
  Array of matching brands.

  <Expandable title="Brand object">
    <ResponseField name="id" type="integer">Brand ID. Use this value in the `brand_ids` filter when searching items.</ResponseField>
    <ResponseField name="title" type="string">Brand name.</ResponseField>
    <ResponseField name="slug" type="string">URL-friendly brand name.</ResponseField>
    <ResponseField name="favourite_count" type="integer">Number of users following this brand.</ResponseField>
    <ResponseField name="item_count" type="integer">Number of items listed under this brand.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "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
    }
  ]
}
```

<Note>
  Each brand search request costs **1 credit**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/vinted/brands
openapi: 3.1.0
info:
  title: ScrapeBadger Vinted API
  version: 1.0.0
  description: >-
    Vinted marketplace scraping API for searching items, fetching details, user
    profiles, and reference data.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/vinted/brands:
    get:
      summary: Search Brands
      description: Search for Vinted brand IDs by name.
      operationId: searchVintedBrands
      parameters:
        - name: query
          in: query
          required: true
          schema:
            type: string
          description: Brand name to search for. Partial matches are supported.
        - name: market
          in: query
          schema:
            type: string
            default: fr
          description: Vinted market to search brands in.
      responses:
        '200':
          description: Brand search results
          content:
            application/json:
              schema:
                type: object
                properties:
                  brands:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                          description: Brand ID.
                        title:
                          type: string
                          description: Brand name.
                        slug:
                          type: string
                          description: URL-friendly brand name.
                        favourite_count:
                          type: integer
                          description: Number of users following this brand.
                        item_count:
                          type: integer
                          description: Number of items listed under this brand.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````