List/Search Liveblog

Request: GET /api/v5/write/ticker/search.json

Query Parameters:

  • owner_id: The ID of the owning user/organization
  • q: Text query
  • template_id: Custom template or Sportstype
  • team_id: Team to filter by
  • tag: Tag to filter by
  • timeframe: Time period to filter by. Allowed values [‘today’, ‘tomorrow’, ‘thisweek’, ‘nextweek’, ‘thismonth’, ‘nextmonth’, ‘upcoming’, ‘current’, ‘future’, ‘monday’, ‘tuesday’, ‘wednesday’, ‘ thursday’, ‘friday’, ‘saturday’, ‘sunday’, ‘all’, ‘past’]
  • limit: Limit results per page
  • more: Page number

Success Response: Tik::Model::Collection[Tik::Model::Game] Object. The Tik::Model::Game objects within the collection will be abbreviated. They contain no events and several rarely used fields are stripped out.

{
  "_type": "Tik::Model::ApiCollection",
  
  // (int) the total number of results in the list
  "total": 0,
  
  // (int) the index of the first element of result
  "offset": 0,
  
  // (array) the result list
  "items": [
    {
      "_type": "Tik::Model::Game",
      "...": "..."
    }
  ]
}