From zero to your first response in about five minutes.
Fill out the access request form with a bit of context on what you're building. We review every request personally and issue an api-key and app-id pair by email.
Every request needs both headers, using hyphens — not underscores:
api-key: YOUR_API_KEY app-id: YOUR_APP_ID
Here's a real request for current NFL team rankings:
curl https://www.versussportssimulator.com/api/v2/rankings/team/nfl \ -H "api-key: YOUR_API_KEY" \ -H "app-id: YOUR_APP_ID"
Every ranking response returns the sport, the date the data was last refreshed, and an array of teams:
{
"sport": "NFL",
"lastUpdated": "2026-07-17",
"team": [
{
"Rank": 1,
"Team": "...",
"Wins": 0,
"Losses": 0,
"LetterGrade": "A"
}
]
}