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://rugby.sportdevs.com/news-agg-leagues?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.13737
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": 207,
"league_id": 13737,
"title": "Rugby roundup: Wins for Bargoed, Newbridge and Cross Keys - Caerphilly Observer",
"link": "https://caerphilly.observer/news/1030275/rugby-roundup-wins-for-bargoed-newbridge-and-cross-keys/",
"thumbnail_url": "https://caerphilly.observer/wp-content/uploads/socialmark-images/16998873131030275.jpg",
"description": "There were wins for Bargoed, Newbridge and Cross Keys in the WRU National Championship East on Saturday November 11.",
"published_date": "2023-11-13T14:56:26+00:00",
"source_url": "https://caerphilly.observer",
"source": "Caerphilly Observer"
}
]