/v1/standings
Conference & division standings
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/nfl-api/v1/standings" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nfl-api/v1/standings", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nfl-api/v1/standings");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/nfl-api/v1/standings",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 2,
"conferences": [
{
"divisions": [
{
"teams": [
{
"id": "17",
"team": "New England Patriots",
"ties": "0.0",
"wins": "14.0",
"losses": "3.0",
"streak": "W3",
"win_percent": ".824",
"abbreviation": "NE"
},
{
"id": "2",
"team": "Buffalo Bills",
"ties": "0.0",
"wins": "12.0",
"losses": "5.0",
"streak": "W1",
"win_percent": ".706",
"abbreviation": "BUF"
},
{
"id": "15",
"team": "Miami Dolphins",
"ties": "0.0",
"wins": "7.0",
"losses": "10.0",
"streak": "L1",
"win_percent": ".412",
"abbreviation": "MIA"
},
{
"id": "20",
"team": "New York Jets",
"ties": "0.0",
"wins": "3.0",
"losses": "14.0",
"streak": "L5",
"win_percent": ".176",
"abbreviation": "NYJ"
}
],
"division": "AFC East"
},
{
"teams": [
{
"id": "23",
"team": "Pittsburgh Steelers",
"ties": "0.0",
"wins": "10.0",
"losses": "7.0",
"streak": "W1",
"win_percent": ".588",
"abbreviation": "PIT"
},
{
"id": "33",
"team": "Baltimore Ravens",
"ties": "0.0",
"wins": "8.0",
"losses": "9.0",
"streak": "L1",
…