Skip to main content

Search Brands

curl -X GET "https://your-domain.com/api/brands/search?keyword=adidas" \
  -H "X-API-Key: your-api-key-here"
Search for kit brands (manufacturers) by name or slug using trigram similarity. Returns up to 10 matched brands ordered by ID.

Query Parameters

keyword
string
required
Keyword to search for in brand names or slugs. Supports fuzzy matching and accent-insensitive search.

Response

Returns an array of up to 10 matching brands.
id
integer
Unique identifier for the brand
name
string
Brand name (e.g., “Adidas”, “Nike”, “Puma”, “Umbro”)
slug
string
URL-friendly slug for the brand
URL to the brand’s logo image
logo_dark
string
URL to the brand’s logo image (dark theme version)
[
  {
    "id": 1,
    "name": "Adidas",
    "slug": "adidas-kits",
    "logo": "https://www.footballkitarchive.com/images/logos/brands/adidas.png",
    "logo_dark": "https://www.footballkitarchive.com/images/logos/brands/adidas-dark.png"
  },
  {
    "id": 2,
    "name": "Nike",
    "slug": "nike-kits",
    "logo": "https://www.footballkitarchive.com/images/logos/brands/nike.png",
    "logo_dark": "https://www.footballkitarchive.com/images/logos/brands/nike-dark.png"
  }
]

Examples

curl -X GET "https://your-domain.com/api/brands/search?keyword=adidas"
Results are cached for optimal performance. The search uses trigram word similarity for fuzzy matching.

Get Brand by ID

curl -X GET "https://your-domain.com/api/brands/1" \
  -H "X-API-Key: your-api-key-here"
Retrieve detailed information about a specific brand by its ID.

Path Parameters

brand_id
integer
required
The unique identifier of the brand

Response

id
integer
Unique identifier for the brand
name
string
Brand name
slug
string
URL-friendly slug for the brand
logo
string
URL to the brand’s logo image
logo_dark
string
URL to the brand’s logo image (dark theme version)
{
  "id": 1,
  "name": "Adidas",
  "slug": "adidas-kits",
  "logo": "https://www.footballkitarchive.com/images/logos/brands/adidas.png",
  "logo_dark": "https://www.footballkitarchive.com/images/logos/brands/adidas-dark.png"
}
The Football Kit Archive includes kits from major manufacturers:
  • Adidas - One of the world’s largest sportswear manufacturers
  • Nike - Leading sports brand with global presence
  • Puma - Major sportswear manufacturer
  • Umbro - Traditional football kit manufacturer
  • New Balance - American sportswear brand
  • Macron - Italian sportswear manufacturer
  • Hummel - Danish sportswear brand
  • Kappa - Italian sportswear brand
  • Joma - Spanish sportswear manufacturer
  • Errea - Italian sportswear brand
  • Castore - British premium sportswear brand
  • Under Armour - American sports equipment company
  • And many more…
Use the search endpoint to discover all available brands in the database.