All URIs are relative to https://api.collegefootballdata.com
Method | HTTP request | Description |
---|---|---|
GetVenues | GET /venues | Arena and venue information |
ICollection GetVenues ()
Arena and venue information
Venues
using System;
using System.Diagnostics;
using CFBSharp.Api;
using CFBSharp.Client;
using CFBSharp.Model;
namespace Example
{
public class GetVenuesExample
{
public void main()
{
// Configure API key authorization: ApiKeyAuth
Configuration.Default.AddApiKey("Authorization", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Authorization", "Bearer");
var apiInstance = new VenuesApi();
try
{
// Arena and venue information
ICollection<Venue> result = apiInstance.GetVenues();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling VenuesApi.GetVenues: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]