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 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.
Unique identifier for the brand
Brand name (e.g., “Adidas”, “Nike”, “Puma”, “Umbro”)
URL-friendly slug for the brand
URL to the brand’s logo image
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"
curl -X GET "https://your-domain.com/api/brands/search?keyword=nike"
curl -X GET "https://your-domain.com/api/brands/search?keyword=puma"
curl -X GET "https://your-domain.com/api/brands/search?keyword=addidas"
# Still returns Adidas due to trigram similarity
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
The unique identifier of the brand
Response
Unique identifier for the brand
URL-friendly slug for the brand
URL to the brand’s logo image
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"
}
Popular Brands
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.