Highlights

GET https://nhl.highlightly.net/highlights NHL & NCAAH API
GET https://sports.highlightly.net/nhl/highlights All Sports API

Highlights are the core of the NHL & NCAAH API. They cover everything from a single goal through to full game recaps, press conferences and post game interviews.

Refresh interval
Once a minute
Plan
Might have restrictions on Basic/Free
Pagination
limit and offset

Verified and unverified clips

Clips are aggregated from many different platforms. Depending on the source and what verification it has been through, each one falls into one of two types.

type What it means
VERIFIED

The clip comes from a reputable source that has been inspected. In most cases the author owns the copyright to the video. Verified highlights are uploaded between 1 and 48 hours after a match finishes. The hosting platform can still impose geo restrictions or block embedding, so check geo restrictions before showing one.

UNVERIFIED

The clip may not have been through verification, or is user uploaded. These cover a wider spectrum, including last minute scores, memorable plays and recaps. They are more real time and can appear while the game is still being played. How long they survive depends on the hosting platform.

Reading a highlight

Every highlight carries a title describing what the video shows. Many also carry a description that expands on it.

The source field records where the clip was aggregated from, for example youtube, twitter, reddit or espn. For some sources a channel is present as well, which is the uploading channel's title. Together these let you narrow down which videos you want to show. Where embedUrl is present you can embed the video directly in your own site or app.

Categories

The category field describes what kind of content the clip contains. Categorisation happens automatically when a highlight is aggregated. A clip that cannot be placed confidently is labelled other rather than being forced into a category it does not belong to, so filtering on category in your own code will not return unrelated content. /highlights has no category query parameter.

Category Contains
match-highlights Edited recap of a match, including full game highlights and summaries in any language.
goal A single goal clip.
power-play-goal Power play goal.
shorthanded-goal Shorthanded goal.
overtime-shootout-goal Overtime or shootout goal.
hat-trick Hat trick.
save Goaltender saves.
fight Fights and scraps.
hit-check Big hits and body checks.
assist-play Assists and playmaking passes.
injury A player injured on the play, carted or helped off, or exiting the game.
viral-moment Celebrations, mascots, milestones, tributes and other spectacle moments.
pre-match-content Previews, predictions and build up content ahead of a match.
post-match-content Reactions, interviews and analysis after a match.
press-conference Official press conferences and media availability.
other Clips that do not fit any other category.

Highlights rendered in a client application

Plan coverage

On the Basic plan, NHL highlights are excluded. A Pro plan or higher removes the restriction and returns highlights from every league this API covers.

Querying

At least one primary query parameter must be specified before you can retrieve data. timezone, limit and offset are secondary and do not count on their own.

Combine timezone with date to get highlights relevant to your own location rather than UTC. leagueName filters by league, for example NHL or NCAA. Teams can be filtered by id, name, abbreviation or display name, so homeTeamAbbreviation works without resolving an id first.

limit sets how many highlights come back. When the number of matching highlights exceeds it, request the next page by increasing offset. The pagination object in every response tells you the totalCount to page through.

Parameters

Parameter Type Description
leagueNameoptional string No description in the spec.e.g. NCAA
dateoptional string Date that follows the YYYY-MM-DD format.e.g. 2024-02-10
timezoneoptional stringdefault Etc/UTC Valid timezone identifier.e.g. Europe/London
seasonoptional number No description in the spec.e.g. 2024
matchIdoptional number No description in the spec.e.g. 10523
homeTeamIdoptional number No description in the spec.e.g. 494
awayTeamIdoptional number No description in the spec.e.g. 15011
homeTeamNameoptional string No description in the spec.e.g. Engineers
awayTeamNameoptional string No description in the spec.e.g. Big Red
homeTeamAbbreviationoptional string No description in the spec.e.g. RPI
awayTeamAbbreviationoptional string No description in the spec.e.g. COR
homeTeamDisplayNameoptional string No description in the spec.e.g. Rensselaer Engineers
awayTeamDisplayNameoptional string No description in the spec.e.g. Cornell Big Red
limitoptional numberdefault 40 No description in the spec.e.g. 40
offsetoptional numberdefault 0 No description in the spec.e.g. 0

Request

curl --request GET \
  --url 'https://nhl.highlightly.net/highlights?leagueName=NCAA&date=2024-02-10' \
  --header 'x-rapidapi-key: YOUR_API_KEY'
const params = new URLSearchParams({
  leagueName: 'NCAA',
  date: '2024-02-10'
})
const response = await fetch(`https://nhl.highlightly.net/highlights?${params}`, {
  headers: {
    'x-rapidapi-key': process.env.HIGHLIGHTLY_API_KEY
  }
})

if (!response.ok) {
  throw new Error(`Highlightly responded ${response.status}`)
}

const data = await response.json()
import os
import requests

response = requests.get(
    'https://nhl.highlightly.net/highlights',
    params={
        'leagueName': 'NCAA',
        'date': '2024-02-10',
    },
    headers={
        'x-rapidapi-key': os.environ['HIGHLIGHTLY_API_KEY'],
    },
    timeout=10,
)

response.raise_for_status()
data = response.json()

Response

dataNhlHighlightResponse[]required39 fields
idnumberrequired
typestringrequired
imgUrlstringPreview picture of the highlight.
titlestringrequired
descriptionstring
urlstringrequiredUrl location of the video highlight.
embedUrlstringUrl of embeddable video highlight.
matchNhlMatchResponserequired28 fields
idnumberrequired
roundstringrequired
datestringrequired
leaguestringrequired
seasonnumberrequired
awayTeamNhlMatchTeamResponserequired5 fields
idnumberrequired
logostring
namestring
displayNamestringrequired
abbreviationstringrequired
homeTeamNhlMatchTeamResponserequired5 fields
idnumberrequired
logostring
namestring
displayNamestringrequired
abbreviationstringrequired
stateNhlMatchStateResponserequired10 fields
periodnumberCurrent in play period.
clocknumberCurrent minute of the in play period.
descriptionstringrequiredCurrent status/description of the match.SuspendedPostponedCancelledAbandonedFinishedIn progressEnd periodHalf timeUnknownScheduled
scoreNhlMatchScoreResponserequired5 fields
currentstringHome - Away score for the match.
firstPeriodstringHome - Away score in 1st period.
secondPeriodstringHome - Away score in 2nd period.
thirdPeriodstringHome - Away score in 3rd period.
overtimePeriodstringHome - Away score in the overtime period.
reportstringAdditional description of the match state.
channelstringChannel title of a given highlight.
sourcestringAggregation source from social media and other equivalent platforms.
categorystringAssumed highlight category
paginationPaginationResponserequired3 fields
totalCountnumberrequiredAvailable number of items, relevant to the provided query.
offsetnumberrequired
limitnumberrequired
planPlanResponserequired2 fields
tierstringrequiredYour current API subscription tier.
messagestringrequiredExplanation message regarding your current tier.

Example response

200 application/json
{
  "data": [
    {
      "id": 1,
      "type": "VERIFIED",
      "imgUrl": "https://example.com/images/preview/1.png",
      "title": "NFL: New Orleans Saints vs Kansas City Chiefs",
      "description": "Game recap of the match.",
      "url": "https://example.com/highlight/v23r23fds2cff",
      "embedUrl": "https://example.com/embed/v23r23fds2cff",
      "match": {
        "id": 1,
        "round": "Regular Season - 14",
        "date": "2023-05-20T15:30:00.000Z",
        "league": "NHL",
        "season": 2023,
        "awayTeam": {
          "id": 1,
          "logo": "https://example.com/logos/team/1.png",
          "name": "Panthers",
          "displayName": "Florida Panthers",
          "abbreviation": "FLA"
        },
        "homeTeam": {
          "id": 1,
          "logo": "https://example.com/logos/team/1.png",
          "name": "Panthers",
          "displayName": "Florida Panthers",
          "abbreviation": "FLA"
        },
        "state": {
          "period": 2,
          "clock": 8,
          "description": "In progress",
          "score": {
            "current": "1 - 1",
            "firstPeriod": "0 - 0",
            "secondPeriod": "1 - 1",
            "thirdPeriod": "2 - 2",
            "overtimePeriod": "1 - 0"
          },
          "report": "Final"
        }
      },
      "channel": "NHL",
      "source": "youtube",
      "category": "match-highlights"
    }
  ],
  "pagination": {
    "totalCount": 490,
    "offset": 20,
    "limit": 100
  },
  "plan": {
    "tier": "BASIC",
    "message": "Some results might be hidden with FREE tier. Check your API coverage for more information: https://rapidapi.com/highlightly-api-highlightly-api-default/api/sport-highlights-api/details"
  }
}

Values are the examples declared in the OpenAPI spec, not a captured live response.

Errors

Status Description
400 Bad request descriptive error.
500 Internal server error.