opendorse.com APIopendorse.com ↗
Access Opendorse NIL data: team lists, athlete directories, social media reach, and brand deal pricing across college sports programs.
curl -X GET 'https://api.parse.bot/scraper/1214b568-9cb5-41d2-8c3b-6e23d202551f/get_all_teams?page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
Get a paginated list of teams/schools registered on the Opendorse NIL marketplace. Returns up to 40 teams per page with pagination metadata.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
{
"type": "object",
"fields": {
"teams": "array of team objects with id, slug, name, marketplaceType, and logo",
"pagination": "object with page, totalCount, and totalPages"
},
"sample": {
"data": {
"teams": [
{
"id": 164,
"logo": "https://marketplaces.opendorse.com/static/abilenechristian-wildcats/050ee5e2-7c59-47ba-9057-223228514819.svg",
"name": "Abilene Christian Wildcats",
"slug": "abilenechristian-wildcats",
"ordinal": null,
"marketplaceType": "Team"
}
],
"pagination": {
"page": 1,
"totalCount": 335,
"totalPages": 9
}
},
"status": "success"
}
}About the opendorse.com API
The Opendorse API exposes 4 endpoints covering the Opendorse NIL marketplace — from paginated team and athlete listings to full athlete profiles with social media reach figures and service pricing. The get_athlete_profile endpoint returns per-platform follower counts for Instagram, Twitter, TikTok, and Facebook alongside biography, background demographics, and an itemized list of available brand deal services.
Teams and Athlete Discovery
The get_all_teams endpoint returns up to 40 teams per page. Each team object includes an id, slug, name, marketplaceType, and logo URL, plus pagination metadata (page, totalCount, totalPages). Use the slug field as input to get_team_athletes or get_team_page_metadata. Pass opendorse as the team_slug to query the global marketplace instead of a single school.
get_team_athletes supports filtering by sport, price range (e.g. ZeroToFiftyDollars, FiftyToTwoHundredDollars), and a free-text term for name search. Sort options include DealsCompleted, PriceHighToLow, PriceLowToHigh, and Recommended. Each athlete object in the response includes full_name, sport, starting_price, profile_url, network_profile_code, and social_reach.
Athlete Profile Detail
get_athlete_profile takes the network_profile_code from athlete listing results and returns a full profile. The pricing object contains a services array and a brand_pricing array that itemize what deal types the athlete offers. The social_media object provides individual _reach and _url fields for Instagram, Twitter, TikTok, and Facebook. The background object includes age, gender, ethnicity, and languages. Team affiliations — current, previous, and leagues — are grouped under affiliations.
Team Metadata
get_team_page_metadata returns the team's display name, logo URL, URL slug, a colors map of role names (such as PrimaryColor, SecondaryColor) to hex values, and an available_sports array. This is useful for building filtered browsing UIs or matching a team's visual identity before rendering athlete cards.
- Identify college athletes by sport and price range for NIL sponsorship outreach using get_team_athletes filters
- Aggregate social media reach across Instagram, TikTok, Twitter, and Facebook for athlete comparison using get_athlete_profile
- Build a team-branded athlete directory using logo, colors, and available_sports from get_team_page_metadata
- Rank athletes by completed deals or starting price using the sort parameter in get_team_athletes
- Pull athlete demographic data (age, gender, ethnicity, languages) from the background field for audience alignment research
- Search athletes by name across the full Opendorse marketplace by passing term with team_slug set to 'opendorse'
- Map current and previous team affiliations for an athlete using the affiliations object in get_athlete_profile
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.