Skip to content

Instantly share code, notes, and snippets.

@smykes
Last active November 16, 2023 14:23
Show Gist options
  • Save smykes/368afa60c1a75b3d5468 to your computer and use it in GitHub Desktop.
Save smykes/368afa60c1a75b3d5468 to your computer and use it in GitHub Desktop.
A JSON string of all 32 NFL football teams including city, name, conference, division, and abbreviation.
[
{
"city": "Arizona",
"name": "Cardinals",
"abr": "ARI",
"conf": "NFC",
"div": "West"
},
{
"city": "Atlanta",
"name": "Falcons",
"abr": "ATL",
"conf": "NFC",
"div": "South"
},
{
"city": "Baltimore",
"name": "Ravens",
"abr": "BAL",
"conf": "AFC",
"div": "North"
},
{
"city": "Buffalo",
"name": "Bills",
"abr": "BUF",
"conf": "AFC",
"div": "EAST"
},
{
"city": "Carolina",
"name": "Panthers",
"abr": "CAR",
"conf": "NFC",
"div": "South"
},
{
"city": "Cincinati",
"name": "Bengals",
"abr": "CIN",
"conf": "AFC",
"div": "North"
},
{
"city": "Chicago",
"name": "Bears",
"abr": "CIN",
"conf": "NFC",
"div": "North"
},
{
"city": "Cleveland",
"name": "Browns",
"abr": "CLE",
"conf": "AFC",
"div": "North"
},
{
"city": "Dallas",
"name": "Cowboys",
"abr": "DAL",
"conf": "NFC",
"div": "East"
},
{
"city": "Denver",
"name": "Broncos",
"abr": "DEN",
"conf": "AFC",
"div": "West"
},
{
"city": "Detroit",
"name": "Lions",
"abr": "DET",
"conf": "NFC",
"div": "North"
},
{
"city": "Green Bay",
"name": "Packers",
"abr": "GB",
"conf": "NFC",
"div": "North"
},
{
"city": "Houston",
"name": "Texans",
"abr": "HOU",
"conf": "AFC",
"div": "South"
},
{
"city": "Indianapolis",
"name": "Colts",
"abr": "IND",
"conf": "AFC",
"div": "South"
},
{
"city": "Jacksonville",
"name": "Jaquars",
"abr": "JAX",
"conf": "AFC",
"div": "South"
},
{
"city": "Kansas City",
"name": "Chiefts",
"abr": "KC",
"conf": "AFC",
"div": "West"
},
{
"city": "Miami",
"name": "Dolphins",
"abr": "MIA",
"conf": "AFC",
"div": "East"
},
{
"city": "Minnesota",
"name": "Vikings",
"abr": "MIN",
"conf": "AFC",
"div": "North"
},
{
"city": "New England",
"name": "Patriots",
"abr": "NE",
"conf": "AFC",
"div": "East"
},
{
"city": "New Orleans",
"name": "Saints",
"abr": "NO",
"conf": "NFC",
"div": "South"
},
{
"city": "New York",
"name": "Giants",
"abr": "NYG",
"conf": "NFC",
"div": "East"
},
{
"city": "New York",
"name": "Jets",
"abr": "NYJ",
"conf": "AFC",
"div": "East"
},
{
"city": "Oakland",
"name": "Raiders",
"abr": "OAK",
"conf": "AFC",
"div": "West"
},
{
"city": "Philidelphia",
"name": "Eagles",
"abr": "PHI",
"conf": "NFC",
"div": "East"
},
{
"city": "Pittsburgh",
"name": "Steelers",
"abr": "PIT",
"conf": "AFC",
"div": "North"
},
{
"city": "San Diego",
"name": "Chargers",
"abr": "SD",
"conf": "AFC",
"div": "West"
},
{
"city": "Seattle",
"name": "Seahawks",
"abr": "SEA",
"conf": "NFC",
"div": "West"
},
{
"city": "San Francisco",
"name": "49ers",
"abr": "SF",
"conf": "NFC",
"div": "West"
},
{
"city": "St. Louis",
"name": "Rams",
"abr": "STL",
"conf": "NFC",
"div": "West"
},
{
"city": "Tampa Bay",
"name": "Buccaneers",
"abr": "TB",
"conf": "NFC",
"div": "South"
},
{
"city": "Tennessee",
"name": "Titants",
"abr": "TEN",
"conf": "AFC",
"div": "South"
},
{
"city": "Washington",
"name": "Redskins",
"abr": "WAS",
"conf": "NFC",
"div": "East"
}
]
@jasonschmedes
Copy link

Very useful. The abbreviation for the Chicago Bears should be "CHI" instead of "CIN". Chicago comes before Cincinnati. San Francisco comes before Seattle in football and in alphabetical order.

@KingAtoki
Copy link

KingAtoki commented Nov 6, 2017

This is awesome. Few errors. Cincinnati should have two n's like how I've spelled it. Chiefs shouldn't have a t in it. Philidelphia is spelled Philadelphia. St. Louis Rams are now the Los Angeles Rams. Titans shouldn't have a second t. For anyone using this make sure you make those corrections. Thanks for the list!

@716Buffalo
Copy link

Washington Football Team
Las Vegas Raiders

@kennysexton
Copy link

kennysexton commented Dec 13, 2020

Thanks @smykes!

I published an updated 2020 version of this list with the addition of logo colors, including the fixes pointed out by @jasonschmedes, @KingAtoki, and @716Buffalo.

https://gist.github.com/kennysexton/d76385e31bd4919138c6af5efd094ed4

@zappjones
Copy link

@kennysexton : Thanks for the updated list. On yours you have the LAR and LAC abbreviations need updating and the Commanders are now a thing. I like the addition of the colors though :)

@kennysexton
Copy link

@kennysexton : Thanks for the updated list. On yours you have the LAR and LAC abbreviations need updating and the Commanders are now a thing. I like the addition of the colors though :)

Thanks for bringing this up. Hadn't updated this for a few years, now should be up to date for the 2024 season

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment