Skip to content

fckoppenol/ticketmaster-sdk-net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ticketmaster-sdk-net

https://developer.ticketmaster.com/products-and-docs/apis/international-discovery/

  var client = new InternationalDiscoveryClient({apiKey});

  var arguments = new EventSearchArguments{
      DomainIds = new List<string> { "netherlands" },
      CategoryIds = new List<int> { 10001 },
      Lang = new CultureInfo("en-us"),
      IsSeatsAvailable = true,
      SortBy = EventSearch.SortOptions.Popularity,
      Order = EventSearch.OrderOptions.Descending,
      Rows = 250
  };

  var events = await client.EventSearchAsync(arguments);