Media Players
This endpoint allows you to retrieve the media from players.
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 player_idhttps://rugby.sportdevs.com/media-players?player_id=eq.{player_id}
Query Parameters
- player_id integer
Default value:
eq.331124
The id of the player
- 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.
- player_id integer
The id of the player
- 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": 2440,
"player_id": 331124,
"title": "France 28-29 South Africa",
"subtitle": "Full Highlights",
"url": "https://www.youtube.com/watch?v=y1chFu3sfEk&ab_channel=RugbyWorldCup",
"thumbnail_url": "https://img.youtube.com/vi/y1chFu3sfEk/hqdefault.jpg",
"date_published": "2023-10-15T21:59:14+00:00",
"channel_url": "https://www.youtube.com/watch?v=y1chFu3sfEk&ab_channel=RugbyWorldCup"
},
{
"id": 2441,
"player_id": 331124,
"title": "England 30-24 Fiji",
"subtitle": "Full Highlights",
"url": "https://www.youtube.com/watch?v=prOIFhYIQVI",
"thumbnail_url": "https://img.youtube.com/vi/prOIFhYIQVI/hqdefault.jpg",
"date_published": "2023-10-15T17:55:12+00:00",
"channel_url": "https://www.youtube.com/watch?v=prOIFhYIQVI"
},
{
"id": 2442,
"player_id": 331124,
"title": "Ireland 24-28 New Zealand",
"subtitle": "Full Highlights",
"url": "https://youtu.be/aDft3k_K5rw",
"thumbnail_url": "https://i.ytimg.com/vi/aDft3k_K5rw/maxresdefault.jpg",
"date_published": "2023-10-14T22:01:38+00:00",
"channel_url": "https://youtu.be/aDft3k_K5rw"
},
{
"id": 2443,
"player_id": 331124,
"title": "Wales 17-29 Argentina",
"subtitle": "Full Highlights",
"url": "https://www.youtube.com/watch?v=4Zu6gdcB5yU&ab_channel=RugbyWorldCup",
"thumbnail_url": "https://img.youtube.com/vi/4Zu6gdcB5yU/hqdefault.jpg",
"date_published": "2023-10-14T18:10:04+00:00",
"channel_url": "https://www.youtube.com/watch?v=4Zu6gdcB5yU&ab_channel=RugbyWorldCup"
}
]