Documentation
Sport Widgets

Sport Widgets

Build embeddable odds displays, live score widgets, and event calendars powered by ALT Sports Data.

Sport Widgets

Widget embed flow

Sport widgets are embeddable UI components — odds tickers, live scoreboards, event calendars, matchup cards — that pull real-time data from ALT Sports Data and render it inside a host page or app.

If you are building widgets for editorial content, affiliate sites, broadcast overlays, or in-app sports experiences, this page maps the API surface to typical widget patterns.

Diagram showing how ALT Sports Data powers embeddable widget experiences across host products.

What You Can Build

Widget TypeData SourceKey Endpoint
Odds displayMoneylines, spreads, totals, propsGET /events/{id}/{oddType}
Live scoreboardEvent status, scores, heat resultsGET /events/{id}
Event calendarUpcoming events by sport and dateGET /events
Participant cardRosters, matchups, competitor infoGET /events/{id}/participants
Futures trackerSeason-long winner oddsGET /futures
SGP calculatorSame Game Parlay probabilityPOST /events/{id}/sgp

Core Endpoints for Widgets

These are the endpoints widget builders use most. Each returns consistent JSON with pagination and metadata, so your rendering layer stays predictable.

Supporting Data

Widget Development Tips

Keep polling intervals reasonable. Odds data updates frequently, but most widget use cases do not need sub-second refresh. A 15-30 second poll for live events and 5-minute poll for upcoming events keeps your rate limit usage low. See Rate Limits.

Handle event time changes. Events get delayed, rescheduled, or cancelled. Your widget should gracefully handle status transitions. See Event Time Changes for the full status flow.

Use sport archetypes for adaptive layouts. Different sports have different market structures (motorsport podiums vs. combat matchups vs. team spreads). The Archetypes endpoint tells you what market types a sport supports, so your widget can adapt its layout automatically.

Start with demo credentials. You can build and test your entire widget with demo API keys before going to production. See Authentication.

Get Started

On this page