GET /api/v1/clubs/:clubName/header
Serves the club’s header image from S3. Returns binary image data (not JSON). Same caching behavior as the avatar endpoint.
Authentication: None
Cache: None (has its own in-memory image cache)
Response: Binary image data with Content-Type header (e.g. image/png)
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
clubName | string | Yes | Club name |
Sample Request
curl https://api.grails.app/api/v1/clubs/999/header -o header.pngError Responses
| Status | Description |
|---|---|
| 404 | Club not found or no header set |
| 503 | Storage not configured |
Last updated on