Logo Brands
User Story
The user wants to obtain brand logos for transit operators.
Request
The lang
parameter is specified in ISO 639-1 format, en
for English. The size
parameter specifies the size of the logo. Currently, only small
is supported.
https://transit.ls.hereapi.com/v3/branding/logos.json
?apiKey={YOUR_API_KEY}
&size=small
&lang=en
Response
- a list of logos
- each logo element includes the following information:
- URL to the image
- name of the agency
{
"Res": {
"serviceUrl": "https://transit.api.here.com/transit/v3/branding/logos.json",
"Logos": {
"Link": [
{
"type": "logo",
"href": "https://transit.api.here.com/images/logos/vbb_logo_wp.png",
"text": "VBB"
},
{
"type": "logo",
"href": "https://transit.api.here.com/images/logos/RP_logo_RGB_transparant_206X70.png",
"text": "Rejseplanen"
},
{
"type": "logo",
"href": "https://transit.api.here.com/images/logos/STIF_206x100.png",
"text": "STIF"
},
{
"type": "logo",
"href": "https://transit.api.here.com/images/logos/NTA_logo.png",
"text": "NTA"
},
{
"type": "logo",
"href": "https://transit.api.here.com/images/logos/3LT_Logo.png",
"text": "NVBW"
}
]
}
}
}