Endpoint Playground
Test Crawlora's ESPN poll rankings API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/espn/rankings?sport=football&league=college-football" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sport | string | Yes | football | Sport key |
| league | string | Yes | college-football | College league key |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"league": "college-football",
"season": {
"year": 2024
},
"source_url": "https://site.api.espn.com/apis/site/v2/sports/football/college-football/rankings",
"fetched_at": "2026-07-06T00:00:00Z",
"polls": [
{
"name": "AP Top 25",
"short_name": "AP Poll",
"ranks": [
{
"current": 1,
"previous": 1,
"points": 1650,
"trend": "-",
"record": "16-0",
"team": {
"id": "194",
"abbreviation": "OSU",
"name": "Buckeyes"
}
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns poll rankings (e.g. AP Top 25) for a college league from ESPN's credential-free public JSON. Rankings are only published for college leagues: the `sport` enum accepts `football` and `basketball`, and the `league` enum accepts `college-football`, `mens-college-basketball`, and `womens-college-basketball`.
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"league": "college-football",
"season": {
"year": 2024
},
"source_url": "https://site.api.espn.com/apis/site/v2/sports/football/college-football/rankings",
"fetched_at": "2026-07-06T00:00:00Z",
"polls": [
{
"name": "AP Top 25",
"short_name": "AP Poll",
"ranks": [
{
"current": 1,
"previous": 1,
"points": 1650,
"trend": "-",
"record": "16-0",
"team": {
"id": "194",
"abbreviation": "OSU",
"name": "Buckeyes"
}
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/espn/rankings?sport=<sport>&league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"