Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /american_football/get_tables
Returns the league, home & away tables per season or round.
Request URL
https://dsg-api.com/clients/{client_name}/american_football/get_tables?type={type}&id={id}&client={client_name}&authkey={client_authkey}
API Threshold
  • 10k calls per hour (2.78 calls per second)
  • This threshold applies to ALL your calls you do across the API.
  • Your number of calls get reset every hour at :00
  • If the thresold is reached within the hour you will get a xml/json message accordingly (which is gone when the next hour starts, see previous point)
Parameters
authkey
string Required
client authentification key
client
string Required
unique client ID
conference
string
if set to value "yes" it will show conference standings
date
string
set a date in format yyyy-mm-dd as limit
ftype
string
changes feed type from XML to json (ftype=json or ftype=json_array)
gameweek
int
gameweek value to get table from
id
int Required
object id to return
lang
string
two-character language code, defaults to 'en'
live
string
only 'yes' is valid which will provide a live table
type
string Required
type is either "season" or "round"
Nodes
competition
details about competition
area_id
unique identifier for an area
area_name
name of the area
competition_id
unique identifier for a competition
format
competition format (domestic_league, domestic_cup, domestic_league_cup, domestic_super_cup, international_cup, international_super_cup, playoff, tournament, race, unofficial)
gender
determines the gender of the competition (male or female)
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of the competition
type
determines if a competition is between club teams (club) or national teams (international)
conference
basic details about the conference
conference_id
unique identifier for a conference
conference_name
name of the conference
datasportsgroup
details about the API version, sport, language and generation timestamp
generated_utc
UTC timestamp when the API output was generated
lang
language of the API call
sport
sport value
version
version of the API
list
details about list type
aggregation_type
aggregation type (scores or wins)
id
unique identifier for a group if type = group, if type = playoff then for a playoff
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of either a group or playoff
score_a
playoff score of team_a
score_b
playoff score of team_b
type
list type (regular, group or playoff)
winner_team_id
unique identifier for the winning team of the playoff
method
details about the API function
method_id
unique ID of method
name
name of method
round
details about the round
end_date
end date, format 'yyyy-mm-dd'
end_date_utc
end date in UTC timezone, format 'yyyy-mm-dd'
end_time
end time, format 'HH:mm:ss'
end_time_utc
end time in UTC timezone, format 'HH:mm:ss'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of round
round_id
unique identifier of round
start_date
start date, format 'yyyy-mm-dd'
start_date_utc
start date in UTC timezone, format 'yyyy-mm-dd'.
start_time
start time, format 'HH:mm:ss'
start_time_utc
start time in UTC timezone, format 'HH:mm:ss'
type
determines if the round contains a table or a cup structure (knock-out)
season
details about the season
end_date
end date, format 'yyyy-mm-dd'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
logo
full path URL of logo for particular season
original_name
competition name during this season
season_id
unique identifier for season
start_date
start date, format 'yyyy-mm-dd'
title
title of season
table
details about the table entry
area_id
unique identifier for an area
form
performance of the last 5 matches in the particular round (W = win, D = draw, L = loss)
live
indicates if there is a live game for the team
next_match_id
match_id of the upcoming match in the particular round
next_opponent_name
current team name of the next opponent in the particular round
next_opponent_team_id
team_id of the next opponent in the particular round
original_team_name
original team name during the season
position
position value
prev_season
defines last season achievements ('C','CW','P','R')
short_name
shortened name of the person
team_id
unique identifier of the team
team_logo
full path URL of team logo
team_name
current team name
zone
name of table zone
zone_id
unique identifier for a table zone
tour
details about the tour
gender
gender of the tour
name
name of the particular tour
tour_id
unique tour identifier
tour_type
defines if the tournament is part of a tour or not. If not then value "non-tour"
tour_season
details about a tour season
logo
full path URL of logo for particular tour_season
name
name of the tour_season
title
title of the particular tour season
tour_season_id
unique identifier of a tour season
values
tables values of the team (american football)
conference
conference records like w-l-t (win-loss-tied)
division
division records like w-l-t (win-loss-tied)
home
win-loss record for home matches
matches_lost
value for total lost matches
matches_tied
value for total tied matches
matches_won
value for total won matches
percentage
win percentage (win/loss)
points_against
value for total points against
points_for
value for total points made
road
win-loss record for away matches
streak
losing/winning streaks in format like W5, L3 etc
Response Headers
200
Success
401
Unauthorized
429
Too Many Requests
Code Samples
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://dsg-api.com/clients/{client_name}/american_football/get_tables?type={type}&id={id}&client={client_name}&authkey={client_authkey}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "{User}:{Password}");
$content = curl_exec($ch);
curl_close($ch);
?>
curl GET -u "User:Password" "https://dsg-api.com/clients/{client_name}/american_football/get_tables?type={type}&id={id}&client={client_name}&authkey={client_authkey}"
Imports System
Imports System.Net	
Imports System.IO
Imports System.Text

Public Module Module1
	Public Sub Main()
		Dim url As String = "https://dsg-api.com/clients/{client_name}/american_football/get_tables?type={type}&id={id}&client={client_name}&authkey={client_authkey}"
		Dim myReq As WebRequest = WebRequest.Create(url)
		myReq.Credentials = new System.Net.NetworkCredential("{User}", "{Password}")
		Dim wr As WebResponse = myReq.GetResponse()
		Dim receiveStream As Stream = wr.GetResponseStream()
		Dim reader As StreamReader = New StreamReader(receiveStream, Encoding.UTF8)
		Dim content As String = reader.ReadToEnd()
	End Sub
End Module
response = requests.get("https://dsg-api.com/clients/{client_name}/american_football/get_tables?type={type}&id={id}&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"1.0","sport":"american_football","lang":"en","method":{"method_id":"71","name":"get_tables"},"competition":{"competition_id":"1","name":"NFL","teamtype":"male","type":"club","format":"domestic_league","area_id":"203","area_name":"United States","last_updated":"2019-01-05 03:12:48","season":{"season_id":"15914","title":"2018\/2019","original_name":"NFL","start_date":"2018-09-06","end_date":"2019-02-04","logo":"https:\/\/www.dsg-images.com\/comps\/200x200\/1.png","last_updated":"2018-04-20 13:09:48","rounds":{"round_id":"21521","name":"Regular Season","start_date":"2018-09-06","end_date":"2018-12-31","type":"table","last_updated":"2018-04-20 13:11:49","group":[{"group_id":"5777","name":"AFC East","last_updated":"2018-04-20 13:12:47","total":{"table":[{"position":"1","team_id":"2","team_name":"New England Patriots","short_name":"Patriots","original_team_name":"New England Patriots","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,L,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"11","matches_lost":"5","matches_tied":"0","percentage":"0.688","division":"5-1","conference":"8-4","points_for":"436","points_against":"325","streak":"W2","home":"8-0","road":"3-5"},{"position":"2","team_id":"3","team_name":"Miami Dolphins","short_name":"Dolphins","original_team_name":"Miami Dolphins","zone":"","zone_id":"","prev_season":"","form":"L,L,L,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"7","matches_lost":"9","matches_tied":"0","percentage":"0.438","division":"4-2","conference":"6-6","points_for":"319","points_against":"433","streak":"L1","home":"6-2","road":"1-7"},{"position":"3","team_id":"4","team_name":"Buffalo Bills","short_name":"Bills","original_team_name":"Buffalo Bills","zone":"","zone_id":"","prev_season":"","form":"W,L,W,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"6","matches_lost":"10","matches_tied":"0","percentage":"0.375","division":"2-4","conference":"4-8","points_for":"269","points_against":"374","streak":"W1","home":"4-4","road":"2-6"},{"position":"4","team_id":"1","team_name":"New York Jets","short_name":"Jets","original_team_name":"New York Jets","zone":"","zone_id":"","prev_season":"","form":"L,L,L,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"4","matches_lost":"12","matches_tied":"0","percentage":"0.250","division":"1-5","conference":"3-9","points_for":"333","points_against":"441","streak":"L1","home":"2-6","road":"2-6"}]},"home":{"table":[{"position":"1","team_id":"2","team_name":"New England Patriots","short_name":"Patriots","original_team_name":"New England Patriots","matches_won":"8","matches_lost":"0","matches_tied":"0","percentage":"1.000","division":"3-0","conference":"6-0","points_for":"263","points_against":"133","streak":"W8","home":"8-0","road":""},{"position":"2","team_id":"3","team_name":"Miami Dolphins","short_name":"Dolphins","original_team_name":"Miami Dolphins","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"3-0","conference":"5-1","points_for":"182","points_against":"173","streak":"L1","home":"6-2","road":""},{"position":"3","team_id":"4","team_name":"Buffalo Bills","short_name":"Bills","original_team_name":"Buffalo Bills","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"3-3","points_for":"151","points_against":"187","streak":"W2","home":"4-4","road":""},{"position":"4","team_id":"1","team_name":"New York Jets","short_name":"Jets","original_team_name":"New York Jets","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"0-3","conference":"2-4","points_for":"188","points_against":"248","streak":"L5","home":"2-6","road":""}]},"away":{"table":[{"position":"1","team_id":"2","team_name":"New England Patriots","short_name":"Patriots","original_team_name":"New England Patriots","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"2-1","conference":"2-4","points_for":"173","points_against":"192","streak":"L2","home":"","road":"3-5"},{"position":"2","team_id":"4","team_name":"Buffalo Bills","short_name":"Bills","original_team_name":"Buffalo Bills","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"1-2","conference":"1-5","points_for":"118","points_against":"187","streak":"L2","home":"","road":"2-6"},{"position":"3","team_id":"1","team_name":"New York Jets","short_name":"Jets","original_team_name":"New York Jets","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"1-2","conference":"1-5","points_for":"145","points_against":"193","streak":"L1","home":"","road":"2-6"},{"position":"4","team_id":"3","team_name":"Miami Dolphins","short_name":"Dolphins","original_team_name":"Miami Dolphins","matches_won":"1","matches_lost":"7","matches_tied":"0","percentage":"0.125","division":"1-2","conference":"1-5","points_for":"137","points_against":"260","streak":"L7","home":"","road":"1-7"}]}},{"group_id":"5778","name":"AFC North","last_updated":"2018-04-20 13:12:52","total":{"table":[{"position":"1","team_id":"7","team_name":"Baltimore Ravens","short_name":"Ravens","original_team_name":"Baltimore Ravens","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,W,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"10","matches_lost":"6","matches_tied":"0","percentage":"0.625","division":"3-3","conference":"8-4","points_for":"389","points_against":"287","streak":"W2","home":"6-2","road":"4-4"},{"position":"2","team_id":"5","team_name":"Pittsburgh Steelers","short_name":"Steelers","original_team_name":"Pittsburgh Steelers","zone":"","zone_id":"","prev_season":"","form":"W,L,W,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"9","matches_lost":"6","matches_tied":"1","percentage":"0.563","division":"4-2","conference":"6-6","points_for":"428","points_against":"360","streak":"W1","home":"5-3","road":"4-3"},{"position":"3","team_id":"8","team_name":"Cleveland Browns","short_name":"Browns","original_team_name":"Cleveland Browns","zone":"","zone_id":"","prev_season":"","form":"L,W,W,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"7","matches_lost":"8","matches_tied":"1","percentage":"0.438","division":"3-3","conference":"5-7","points_for":"359","points_against":"392","streak":"L2","home":"5-2","road":"2-6"},{"position":"4","team_id":"6","team_name":"Cincinnati Bengals","short_name":"Bengals","original_team_name":"Cincinnati Bengals","zone":"","zone_id":"","prev_season":"","form":"L,L,W,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"6","matches_lost":"10","matches_tied":"0","percentage":"0.375","division":"1-5","conference":"4-8","points_for":"368","points_against":"455","streak":"L1","home":"4-4","road":"2-6"}]},"home":{"table":[{"position":"1","team_id":"7","team_name":"Baltimore Ravens","short_name":"Ravens","original_team_name":"Baltimore Ravens","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"2-1","conference":"5-1","points_for":"217","points_against":"138","streak":"W4","home":"6-2","road":""},{"position":"2","team_id":"8","team_name":"Cleveland Browns","short_name":"Browns","original_team_name":"Cleveland Browns","matches_won":"5","matches_lost":"2","matches_tied":"1","percentage":"0.625","division":"2-1","conference":"3-3","points_for":"169","points_against":"176","streak":"W3","home":"5-2","road":""},{"position":"3","team_id":"5","team_name":"Pittsburgh Steelers","short_name":"Steelers","original_team_name":"Pittsburgh Steelers","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"2-1","conference":"3-3","points_for":"240","points_against":"180","streak":"W2","home":"5-3","road":""},{"position":"4","team_id":"6","team_name":"Cincinnati Bengals","short_name":"Bengals","original_team_name":"Cincinnati Bengals","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"3-3","points_for":"193","points_against":"228","streak":"W1","home":"4-4","road":""}]},"away":{"table":[{"position":"1","team_id":"5","team_name":"Pittsburgh Steelers","short_name":"Steelers","original_team_name":"Pittsburgh Steelers","matches_won":"4","matches_lost":"3","matches_tied":"1","percentage":"0.500","division":"2-1","conference":"3-3","points_for":"188","points_against":"180","streak":"L3","home":"","road":"4-3"},{"position":"2","team_id":"7","team_name":"Baltimore Ravens","short_name":"Ravens","original_team_name":"Baltimore Ravens","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"3-3","points_for":"172","points_against":"149","streak":"W1","home":"","road":"4-4"},{"position":"3","team_id":"8","team_name":"Cleveland Browns","short_name":"Browns","original_team_name":"Cleveland Browns","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"1-2","conference":"2-4","points_for":"190","points_against":"216","streak":"L1","home":"","road":"2-6"},{"position":"4","team_id":"6","team_name":"Cincinnati Bengals","short_name":"Bengals","original_team_name":"Cincinnati Bengals","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"0-3","conference":"1-5","points_for":"175","points_against":"227","streak":"L5","home":"","road":"2-6"}]}},{"group_id":"5779","name":"AFC South","last_updated":"2018-04-20 13:13:25","total":{"table":[{"position":"1","team_id":"9","team_name":"Houston Texans","short_name":"Texans","original_team_name":"Houston Texans","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,L,W,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"11","matches_lost":"5","matches_tied":"0","percentage":"0.688","division":"4-2","conference":"9-3","points_for":"402","points_against":"316","streak":"W1","home":"6-2","road":"5-3"},{"position":"2","team_id":"11","team_name":"Indianapolis Colts","short_name":"Colts","original_team_name":"Indianapolis Colts","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,W,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"10","matches_lost":"6","matches_tied":"0","percentage":"0.625","division":"4-2","conference":"7-5","points_for":"433","points_against":"344","streak":"W1","home":"6-2","road":"4-4"},{"position":"3","team_id":"10","team_name":"Tennessee Titans","short_name":"Titans","original_team_name":"Tennessee Titans","zone":"","zone_id":"","prev_season":"","form":"L,W,W,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"9","matches_lost":"7","matches_tied":"0","percentage":"0.563","division":"3-3","conference":"5-7","points_for":"310","points_against":"303","streak":"L2","home":"6-2","road":"3-5"},{"position":"4","team_id":"12","team_name":"Jacksonville Jaguars","short_name":"Jaguars","original_team_name":"Jacksonville Jaguars","zone":"","zone_id":"","prev_season":"","form":"L,W,L,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"5","matches_lost":"11","matches_tied":"0","percentage":"0.313","division":"1-5","conference":"4-8","points_for":"245","points_against":"316","streak":"L1","home":"3-5","road":"2-6"}]},"home":{"table":[{"position":"1","team_id":"9","team_name":"Houston Texans","short_name":"Texans","original_team_name":"Houston Texans","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"2-1","conference":"5-1","points_for":"207","points_against":"136","streak":"W1","home":"6-2","road":""},{"position":"2","team_id":"10","team_name":"Tennessee Titans","short_name":"Titans","original_team_name":"Tennessee Titans","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"2-1","conference":"4-2","points_for":"178","points_against":"151","streak":"L1","home":"6-2","road":""},{"position":"3","team_id":"11","team_name":"Indianapolis Colts","short_name":"Colts","original_team_name":"Indianapolis Colts","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"2-1","conference":"4-2","points_for":"239","points_against":"163","streak":"W6","home":"6-2","road":""},{"position":"4","team_id":"12","team_name":"Jacksonville Jaguars","short_name":"Jaguars","original_team_name":"Jacksonville Jaguars","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"3-3","points_for":"128","points_against":"121","streak":"L1","home":"3-5","road":""}]},"away":{"table":[{"position":"1","team_id":"9","team_name":"Houston Texans","short_name":"Texans","original_team_name":"Houston Texans","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"2-1","conference":"4-2","points_for":"195","points_against":"180","streak":"L1","home":"","road":"5-3"},{"position":"2","team_id":"11","team_name":"Indianapolis Colts","short_name":"Colts","original_team_name":"Indianapolis Colts","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"2-1","conference":"3-3","points_for":"194","points_against":"181","streak":"W2","home":"","road":"4-4"},{"position":"3","team_id":"10","team_name":"Tennessee Titans","short_name":"Titans","original_team_name":"Tennessee Titans","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"1-5","points_for":"132","points_against":"152","streak":"W1","home":"","road":"3-5"},{"position":"4","team_id":"12","team_name":"Jacksonville Jaguars","short_name":"Jaguars","original_team_name":"Jacksonville Jaguars","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"0-3","conference":"1-5","points_for":"117","points_against":"195","streak":"L1","home":"","road":"2-6"}]}},{"group_id":"5780","name":"AFC West","last_updated":"2018-04-20 13:13:30","total":{"table":[{"position":"1","team_id":"13","team_name":"Kansas City Chiefs","short_name":"Chiefs","original_team_name":"Kansas City Chiefs","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,L,L,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"12","matches_lost":"4","matches_tied":"0","percentage":"0.750","division":"5-1","conference":"10-2","points_for":"565","points_against":"421","streak":"W2","home":"7-1","road":"5-3"},{"position":"2","team_id":"16","team_name":"Los Angeles Chargers","short_name":"Chargers","original_team_name":"Los Angeles Chargers","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,L,W,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"12","matches_lost":"4","matches_tied":"0","percentage":"0.750","division":"4-2","conference":"9-3","points_for":"428","points_against":"329","streak":"W1","home":"5-3","road":"7-1"},{"position":"3","team_id":"15","team_name":"Denver Broncos","short_name":"Broncos","original_team_name":"Denver Broncos","zone":"","zone_id":"","prev_season":"","form":"L,L,L,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"6","matches_lost":"10","matches_tied":"0","percentage":"0.375","division":"2-4","conference":"4-8","points_for":"329","points_against":"349","streak":"L1","home":"3-5","road":"3-5"},{"position":"4","team_id":"14","team_name":"Oakland Raiders","short_name":"Raiders","original_team_name":"Oakland Raiders","zone":"","zone_id":"","prev_season":"","form":"L,W,L,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"4","matches_lost":"12","matches_tied":"0","percentage":"0.250","division":"1-5","conference":"3-9","points_for":"290","points_against":"467","streak":"L2","home":"3-5","road":"1-7"}]},"home":{"table":[{"position":"1","team_id":"13","team_name":"Kansas City Chiefs","short_name":"Chiefs","original_team_name":"Kansas City Chiefs","matches_won":"7","matches_lost":"1","matches_tied":"0","percentage":"0.875","division":"2-1","conference":"5-1","points_for":"259","points_against":"144","streak":"W1","home":"7-1","road":""},{"position":"2","team_id":"16","team_name":"Los Angeles Chargers","short_name":"Chargers","original_team_name":"Los Angeles Chargers","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"1-2","conference":"3-3","points_for":"206","points_against":"170","streak":"L1","home":"5-3","road":""},{"position":"3","team_id":"14","team_name":"Oakland Raiders","short_name":"Raiders","original_team_name":"Oakland Raiders","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"3-3","points_for":"179","points_against":"239","streak":"W2","home":"3-5","road":""},{"position":"4","team_id":"15","team_name":"Denver Broncos","short_name":"Broncos","original_team_name":"Denver Broncos","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"2-4","points_for":"156","points_against":"169","streak":"L2","home":"3-5","road":""}]},"away":{"table":[{"position":"1","team_id":"16","team_name":"Los Angeles Chargers","short_name":"Chargers","original_team_name":"Los Angeles Chargers","matches_won":"7","matches_lost":"1","matches_tied":"0","percentage":"0.875","division":"3-0","conference":"6-0","points_for":"222","points_against":"159","streak":"W6","home":"","road":"7-1"},{"position":"2","team_id":"13","team_name":"Kansas City Chiefs","short_name":"Chiefs","original_team_name":"Kansas City Chiefs","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"3-0","conference":"5-1","points_for":"306","points_against":"277","streak":"L1","home":"","road":"5-3"},{"position":"3","team_id":"15","team_name":"Denver Broncos","short_name":"Broncos","original_team_name":"Denver Broncos","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"2-4","points_for":"173","points_against":"180","streak":"L2","home":"","road":"3-5"},{"position":"4","team_id":"14","team_name":"Oakland Raiders","short_name":"Raiders","original_team_name":"Oakland Raiders","matches_won":"1","matches_lost":"7","matches_tied":"0","percentage":"0.125","division":"0-3","conference":"0-6","points_for":"111","points_against":"228","streak":"L3","home":"","road":"1-7"}]}},{"group_id":"5781","name":"NFC East","last_updated":"2018-04-20 13:13:44","total":{"table":[{"position":"1","team_id":"20","team_name":"Dallas Cowboys","short_name":"Cowboys","original_team_name":"Dallas Cowboys","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,L,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"10","matches_lost":"6","matches_tied":"0","percentage":"0.625","division":"5-1","conference":"9-3","points_for":"339","points_against":"324","streak":"W1","home":"7-1","road":"3-5"},{"position":"2","team_id":"17","team_name":"Philadelphia Eagles","short_name":"Eagles","original_team_name":"Philadelphia Eagles","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,W,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"9","matches_lost":"7","matches_tied":"0","percentage":"0.563","division":"4-2","conference":"6-6","points_for":"367","points_against":"348","streak":"W2","home":"5-3","road":"4-4"},{"position":"3","team_id":"18","team_name":"Washington Redskins","short_name":"Redskins","original_team_name":"Washington Redskins","zone":"","zone_id":"","prev_season":"","form":"L,L,W,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"7","matches_lost":"9","matches_tied":"0","percentage":"0.438","division":"2-4","conference":"6-6","points_for":"281","points_against":"359","streak":"L1","home":"3-5","road":"4-4"},{"position":"4","team_id":"19","team_name":"New York Giants","short_name":"Giants","original_team_name":"New York Giants","zone":"","zone_id":"","prev_season":"","form":"L,L,L,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"5","matches_lost":"11","matches_tied":"0","percentage":"0.313","division":"1-5","conference":"4-8","points_for":"369","points_against":"412","streak":"L2","home":"2-6","road":"3-5"}]},"home":{"table":[{"position":"1","team_id":"20","team_name":"Dallas Cowboys","short_name":"Cowboys","original_team_name":"Dallas Cowboys","matches_won":"7","matches_lost":"1","matches_tied":"0","percentage":"0.875","division":"3-0","conference":"6-0","points_for":"200","points_against":"148","streak":"W4","home":"7-1","road":""},{"position":"2","team_id":"17","team_name":"Philadelphia Eagles","short_name":"Eagles","original_team_name":"Philadelphia Eagles","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"2-1","conference":"3-3","points_for":"181","points_against":"164","streak":"W3","home":"5-3","road":""},{"position":"3","team_id":"18","team_name":"Washington Redskins","short_name":"Redskins","original_team_name":"Washington Redskins","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"3-3","points_for":"134","points_against":"197","streak":"L4","home":"3-5","road":""},{"position":"4","team_id":"19","team_name":"New York Giants","short_name":"Giants","original_team_name":"New York Giants","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"0-3","conference":"2-4","points_for":"162","points_against":"222","streak":"L2","home":"2-6","road":""}]},"away":{"table":[{"position":"1","team_id":"17","team_name":"Philadelphia Eagles","short_name":"Eagles","original_team_name":"Philadelphia Eagles","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"2-1","conference":"3-3","points_for":"186","points_against":"184","streak":"W2","home":"","road":"4-4"},{"position":"2","team_id":"18","team_name":"Washington Redskins","short_name":"Redskins","original_team_name":"Washington Redskins","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"3-3","points_for":"147","points_against":"162","streak":"L1","home":"","road":"4-4"},{"position":"3","team_id":"20","team_name":"Dallas Cowboys","short_name":"Cowboys","original_team_name":"Dallas Cowboys","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"2-1","conference":"3-3","points_for":"139","points_against":"176","streak":"W1","home":"","road":"3-5"},{"position":"4","team_id":"19","team_name":"New York Giants","short_name":"Giants","original_team_name":"New York Giants","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"2-4","points_for":"207","points_against":"190","streak":"L1","home":"","road":"3-5"}]}},{"group_id":"5782","name":"NFC North","last_updated":"2018-04-20 13:13:53","total":{"table":[{"position":"1","team_id":"21","team_name":"Chicago Bears","short_name":"Bears","original_team_name":"Chicago Bears","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,W,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"12","matches_lost":"4","matches_tied":"0","percentage":"0.750","division":"5-1","conference":"10-2","points_for":"421","points_against":"283","streak":"W1","home":"7-1","road":"5-3"},{"position":"2","team_id":"23","team_name":"Minnesota Vikings","short_name":"Vikings","original_team_name":"Minnesota Vikings","zone":"","zone_id":"","prev_season":"","form":"L,W,W,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"8","matches_lost":"7","matches_tied":"1","percentage":"0.500","division":"3-3","conference":"6-6","points_for":"360","points_against":"341","streak":"L1","home":"5-3","road":"3-4"},{"position":"3","team_id":"24","team_name":"Detroit Lions","short_name":"Lions","original_team_name":"Detroit Lions","zone":"","zone_id":"","prev_season":"","form":"W,L,L,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"6","matches_lost":"10","matches_tied":"0","percentage":"0.375","division":"2-4","conference":"4-8","points_for":"324","points_against":"360","streak":"W1","home":"3-5","road":"3-5"},{"position":"4","team_id":"22","team_name":"Green Bay Packers","short_name":"Packers","original_team_name":"Green Bay Packers","zone":"","zone_id":"","prev_season":"","form":"L,W,L,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"6","matches_lost":"9","matches_tied":"1","percentage":"0.375","division":"1-5","conference":"3-9","points_for":"376","points_against":"400","streak":"L1","home":"5-2","road":"1-7"}]},"home":{"table":[{"position":"1","team_id":"21","team_name":"Chicago Bears","short_name":"Bears","original_team_name":"Chicago Bears","matches_won":"7","matches_lost":"1","matches_tied":"0","percentage":"0.875","division":"3-0","conference":"6-0","points_for":"225","points_against":"140","streak":"W5","home":"7-1","road":""},{"position":"2","team_id":"23","team_name":"Minnesota Vikings","short_name":"Vikings","original_team_name":"Minnesota Vikings","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"2-1","conference":"4-2","points_for":"176","points_against":"157","streak":"L1","home":"5-3","road":""},{"position":"3","team_id":"22","team_name":"Green Bay Packers","short_name":"Packers","original_team_name":"Green Bay Packers","matches_won":"5","matches_lost":"2","matches_tied":"1","percentage":"0.625","division":"1-2","conference":"3-3","points_for":"190","points_against":"165","streak":"L1","home":"5-2","road":""},{"position":"4","team_id":"24","team_name":"Detroit Lions","short_name":"Lions","original_team_name":"Detroit Lions","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"2-4","points_for":"149","points_against":"208","streak":"L3","home":"3-5","road":""}]},"away":{"table":[{"position":"1","team_id":"21","team_name":"Chicago Bears","short_name":"Bears","original_team_name":"Chicago Bears","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"2-1","conference":"4-2","points_for":"196","points_against":"143","streak":"W2","home":"","road":"5-3"},{"position":"2","team_id":"23","team_name":"Minnesota Vikings","short_name":"Vikings","original_team_name":"Minnesota Vikings","matches_won":"3","matches_lost":"4","matches_tied":"1","percentage":"0.375","division":"1-2","conference":"2-4","points_for":"184","points_against":"184","streak":"W1","home":"","road":"3-4"},{"position":"3","team_id":"24","team_name":"Detroit Lions","short_name":"Lions","original_team_name":"Detroit Lions","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"1-2","conference":"2-4","points_for":"175","points_against":"152","streak":"W1","home":"","road":"3-5"},{"position":"4","team_id":"22","team_name":"Green Bay Packers","short_name":"Packers","original_team_name":"Green Bay Packers","matches_won":"1","matches_lost":"7","matches_tied":"0","percentage":"0.125","division":"0-3","conference":"0-6","points_for":"186","points_against":"235","streak":"W1","home":"","road":"1-7"}]}},{"group_id":"5783","name":"NFC South","last_updated":"2018-04-20 13:14:03","total":{"table":[{"position":"1","team_id":"27","team_name":"New Orleans Saints","short_name":"Saints","original_team_name":"New Orleans Saints","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"L,W,W,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"13","matches_lost":"3","matches_tied":"0","percentage":"0.813","division":"4-2","conference":"9-3","points_for":"504","points_against":"353","streak":"L2","home":"6-2","road":"7-1"},{"position":"2","team_id":"25","team_name":"Atlanta Falcons","short_name":"Falcons","original_team_name":"Atlanta Falcons","zone":"","zone_id":"","prev_season":"","form":"W,W,W,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"7","matches_lost":"9","matches_tied":"0","percentage":"0.438","division":"4-2","conference":"7-5","points_for":"414","points_against":"423","streak":"W1","home":"4-4","road":"3-5"},{"position":"3","team_id":"28","team_name":"Carolina Panthers","short_name":"Panthers","original_team_name":"Carolina Panthers","zone":"","zone_id":"","prev_season":"","form":"W,L,L,L,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"7","matches_lost":"9","matches_tied":"0","percentage":"0.438","division":"2-4","conference":"5-7","points_for":"376","points_against":"382","streak":"W2","home":"5-3","road":"2-6"},{"position":"4","team_id":"26","team_name":"Tampa Bay Buccaneers","short_name":"Buccaneers","original_team_name":"Tampa Bay Buccaneers","zone":"","zone_id":"","prev_season":"","form":"L,L,L,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"5","matches_lost":"11","matches_tied":"0","percentage":"0.313","division":"2-4","conference":"4-8","points_for":"396","points_against":"464","streak":"L1","home":"4-4","road":"1-7"}]},"home":{"table":[{"position":"1","team_id":"27","team_name":"New Orleans Saints","short_name":"Saints","original_team_name":"New Orleans Saints","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"1-2","conference":"4-2","points_for":"273","points_against":"205","streak":"L1","home":"6-2","road":""},{"position":"2","team_id":"28","team_name":"Carolina Panthers","short_name":"Panthers","original_team_name":"Carolina Panthers","matches_won":"5","matches_lost":"3","matches_tied":"0","percentage":"0.625","division":"1-2","conference":"3-3","points_for":"204","points_against":"175","streak":"L3","home":"5-3","road":""},{"position":"3","team_id":"25","team_name":"Atlanta Falcons","short_name":"Falcons","original_team_name":"Atlanta Falcons","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"2-1","conference":"4-2","points_for":"236","points_against":"215","streak":"W1","home":"4-4","road":""},{"position":"4","team_id":"26","team_name":"Tampa Bay Buccaneers","short_name":"Buccaneers","original_team_name":"Tampa Bay Buccaneers","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"3-3","points_for":"180","points_against":"178","streak":"L2","home":"4-4","road":""}]},"away":{"table":[{"position":"1","team_id":"27","team_name":"New Orleans Saints","short_name":"Saints","original_team_name":"New Orleans Saints","matches_won":"7","matches_lost":"1","matches_tied":"0","percentage":"0.875","division":"3-0","conference":"5-1","points_for":"231","points_against":"148","streak":"W2","home":"","road":"7-1"},{"position":"2","team_id":"25","team_name":"Atlanta Falcons","short_name":"Falcons","original_team_name":"Atlanta Falcons","matches_won":"3","matches_lost":"5","matches_tied":"0","percentage":"0.375","division":"2-1","conference":"3-3","points_for":"178","points_against":"208","streak":"W2","home":"","road":"3-5"},{"position":"3","team_id":"28","team_name":"Carolina Panthers","short_name":"Panthers","original_team_name":"Carolina Panthers","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"1-2","conference":"2-4","points_for":"172","points_against":"207","streak":"W1","home":"","road":"2-6"},{"position":"4","team_id":"26","team_name":"Tampa Bay Buccaneers","short_name":"Buccaneers","original_team_name":"Tampa Bay Buccaneers","matches_won":"1","matches_lost":"7","matches_tied":"0","percentage":"0.125","division":"1-2","conference":"1-5","points_for":"216","points_against":"286","streak":"L7","home":"","road":"1-7"}]}},{"group_id":"5784","name":"NFC West","last_updated":"2018-04-20 13:14:11","total":{"table":[{"position":"1","team_id":"31","team_name":"Los Angeles Rams","short_name":"LA Rams","original_team_name":"Los Angeles Rams","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,L,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"13","matches_lost":"3","matches_tied":"0","percentage":"0.813","division":"6-0","conference":"9-3","points_for":"527","points_against":"384","streak":"W2","home":"7-1","road":"6-2"},{"position":"2","team_id":"29","team_name":"Seattle Seahawks","short_name":"Seahawks","original_team_name":"Seattle Seahawks","zone":"Next Round","zone_id":"next_round","prev_season":"","form":"W,W,L,W,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"10","matches_lost":"6","matches_tied":"0","percentage":"0.625","division":"3-3","conference":"8-4","points_for":"428","points_against":"347","streak":"W1","home":"6-2","road":"4-4"},{"position":"3","team_id":"32","team_name":"San Francisco 49ers","short_name":"49ers","original_team_name":"San Francisco 49ers","zone":"","zone_id":"","prev_season":"","form":"L,L,W,W,L","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"4","matches_lost":"12","matches_tied":"0","percentage":"0.250","division":"1-5","conference":"2-10","points_for":"342","points_against":"435","streak":"L2","home":"4-4","road":"0-8"},{"position":"4","team_id":"30","team_name":"Arizona Cardinals","short_name":"Cardinals","original_team_name":"Arizona Cardinals","zone":"","zone_id":"","prev_season":"","form":"L,L,L,L,W","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","matches_won":"3","matches_lost":"13","matches_tied":"0","percentage":"0.188","division":"2-4","conference":"3-9","points_for":"225","points_against":"425","streak":"L2","home":"1-7","road":"2-6"}]},"home":{"table":[{"position":"1","team_id":"31","team_name":"Los Angeles Rams","short_name":"LA Rams","original_team_name":"Los Angeles Rams","matches_won":"7","matches_lost":"1","matches_tied":"0","percentage":"0.875","division":"3-0","conference":"5-1","points_for":"297","points_against":"225","streak":"W1","home":"7-1","road":""},{"position":"2","team_id":"29","team_name":"Seattle Seahawks","short_name":"Seahawks","original_team_name":"Seattle Seahawks","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"2-1","conference":"5-1","points_for":"228","points_against":"173","streak":"W5","home":"6-2","road":""},{"position":"3","team_id":"32","team_name":"San Francisco 49ers","short_name":"49ers","original_team_name":"San Francisco 49ers","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"2-4","points_for":"170","points_against":"175","streak":"L1","home":"4-4","road":""},{"position":"4","team_id":"30","team_name":"Arizona Cardinals","short_name":"Cardinals","original_team_name":"Arizona Cardinals","matches_won":"1","matches_lost":"7","matches_tied":"0","percentage":"0.125","division":"1-2","conference":"1-5","points_for":"98","points_against":"191","streak":"L3","home":"1-7","road":""}]},"away":{"table":[{"position":"1","team_id":"31","team_name":"Los Angeles Rams","short_name":"LA Rams","original_team_name":"Los Angeles Rams","matches_won":"6","matches_lost":"2","matches_tied":"0","percentage":"0.750","division":"3-0","conference":"4-2","points_for":"230","points_against":"159","streak":"W1","home":"","road":"6-2"},{"position":"2","team_id":"29","team_name":"Seattle Seahawks","short_name":"Seahawks","original_team_name":"Seattle Seahawks","matches_won":"4","matches_lost":"4","matches_tied":"0","percentage":"0.500","division":"1-2","conference":"3-3","points_for":"200","points_against":"174","streak":"L1","home":"","road":"4-4"},{"position":"3","team_id":"30","team_name":"Arizona Cardinals","short_name":"Cardinals","original_team_name":"Arizona Cardinals","matches_won":"2","matches_lost":"6","matches_tied":"0","percentage":"0.250","division":"1-2","conference":"2-4","points_for":"127","points_against":"234","streak":"L2","home":"","road":"2-6"},{"position":"4","team_id":"32","team_name":"San Francisco 49ers","short_name":"49ers","original_team_name":"San Francisco 49ers","matches_won":"0","matches_lost":"8","matches_tied":"0","percentage":"0.000","division":"0-3","conference":"0-6","points_for":"172","points_against":"260","streak":"L8","home":"","road":"0-8"}]}}]}}}}}