Get tournament logo image
GET
/api/v1/tournaments/{id}/logo
const url = 'https://internal.myscore.live/api/v1/api/v1/tournaments/trn_abc123/logo';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/tournaments/trn_abc123/logoPublic endpoint. Returns the logo image bytes with Content-Type set. Falls back to a deterministic placeholder when no logo is uploaded.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
trn_abc123Tournament ID
Responses
Section titled “ Responses ”Image binary
Tournament not found