getDiscoveryHostVenueDetails

@GET(value = "discovery/v2/venues/{host}/{id}")
abstract suspend fun getDiscoveryHostVenueDetails(@Path(value = "host") host: String?, @Path(value = "id") venueId: String?, @Query(value = "locale") locale: String?): Response<DiscoveryVenueDetailsResponse?>

Fetches venue details by host and ID.

Queries the API for venue details using host, ID, and locale.

Return

A Response with a DiscoveryVenueDetailsResponse or null.

Parameters

host

The host for the query, if available.

venueId

The venue ID, if available.

locale

The locale for the query, if available.