Get club logo image
GET
/api/v1/clubs/{id}/image
const url = 'https://internal.myscore.live/api/v1/api/v1/clubs/club_a1b2c3d4/image';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://internal.myscore.live/api/v1/api/v1/clubs/club_a1b2c3d4/imageReturns the club logo as binary image data. Falls back to a generated placeholder if no logo is set.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
club_a1b2c3d4Club ID
Responses
Section titled “ Responses ”Image binary
Club not found