Agg News Leagues
This endpoint allows you to retrieve aggregated news 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 every 15 minutes.
Recommended Calls: Limit calls to 1 every 15 minutes.
Use Cases
Get the news from a specific league_idhttps://table-tennis.sportdevs.com/news-agg-leagues?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.2053
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 news
Note: This is a Primary Key.
- league_id integer
The id of the league
Note: This is a Foreign Key to
leagues.id
. - title text
The title of the news
- link text
The link of the news
- thumbnail_url text
The thumbnail url of the news
- description text
The description of the news
- published_date timestamp with time zone
The published date of the news
- source_url text
The source url of the news
- source text
The source of the news
[
{
"id": 222,
"league_id": 2053,
"title": "Paris mayor says her city has too many SUVs, so she’s asking voters to decide on a parking fee hike - ABC News",
"link": "https://abcnews.go.com/Business/wireStory/paris-mayor-city-suvs-shes-voters-decide-parking-104883277",
"thumbnail_url": "https://i.abcnewsfe.com/a/49ead40d-9060-48e3-8fe0-f125dbaa0d0c/wirestory_a3b77cc2575ebfd7da4e389d3ca5ac6f_16x9.jpg?w=992",
"description": "Does Paris have too many SUVs",
"published_date": "2023-11-14T18:25:13+00:00",
"source_url": "https://abcnews.go.com",
"source": "ABC News"
},
{
"id": 239,
"league_id": 2053,
"title": "Tokyo tennis doubles gold medalists split before Olympic year - NBC Sports",
"link": "https://www.nbcsports.com/olympics/news/barbora-krejcikova-katerina-siniakova-doubles-tennis",
"thumbnail_url": "https://nbcsports.brightspotcdn.com/dims4/default/6a99421/2147483647/strip/true/crop/5568x3132+0+290/resize/1440x810!/quality/90/?url=https%3A%2F%2Fnbc-sports-production-nbc-sports.s3.us-east-1.amazonaws.com%2Fbrightspot%2F86%2F26%2F8b3f415a49aebf45b44e9c980aba%2Fhttps-delivery-gettyimages.com%2Fdownloads%2F1234369486",
"description": "Barbora Krejcikova and Katerina Siniakova might not defend their Olympic doubles title in 2024.",
"published_date": "2023-11-13T14:32:41+00:00",
"source_url": "https://www.nbcsports.com",
"source": "NBC Sports"
}
]