Media Leagues
This endpoint allows you to retrieve the media from leagues.
Multi-language: This feature allows the user to manually change the language of the API response by adding value to the
lang
attribute. Example:lang=en
.
Pagination: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.
Update Period: The endpoint is updated several times a day.
Recommended Calls: Limit calls to 1 per hour.
Use Cases
Get media from a specific league_idhttps://rugby.sportdevs.com/media-leagues?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.2867
The id of the league
- offset string
Default value:
0
Limiting and Pagination
- limit string
Default value:
50
Limiting and Pagination
- lang string
Default value:
en
Multi-language
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
The id of the media
Note: This is a Primary Key.
- league_id integer
The id of the league
- title text
The title of the media
- subtitle text
The subtitle of the media
- url text
The url of the media
- thumbnail_url text
The thumbnail url of the media
- date_published timestamp with time zone
The date of publishing the media
- channel_url text
The source url of the media
[
{
"id": 2010,
"league_id": 2867,
"title": "Penrith Panthers 26-24 Brisbane Broncos",
"subtitle": "Full Highlights",
"url": "https://www.nrl.com/watch/news/panthers-v-broncos--grand-final-2023-1591689/",
"thumbnail_url": "https://www.nrl.com/remote.axd?https://imageproxy-prod.nrl.digital/api/assets/73316942/keyframes/468738/image?center=0.196%2C0.528&preset=share",
"date_published": "2023-10-02T10:45:55+00:00",
"channel_url": "https://www.nrl.com/watch/news/panthers-v-broncos--grand-final-2023-1591689/"
}
]