GET
/api/v1/news/
Auth required
List news articles
Cursor-paginated list of iGaming news articles ordered by published_at DESC. Does not include body_en — body is only available in the detail endpoint. Filterable by brand, language, host, and date range.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| brand_kind | query | string | optional | Brand kind code | |
| brand_slug | query | string | optional | Brand slug | |
| cursor | query | string | optional | The pagination cursor value. | |
| host | query | string | optional | Host FQDN | |
| language | query | string | optional | Language code (ISO 639-1) | |
| ordering | query | string | optional | Which field to use when ordering the results. | |
| page_size | query | integer | optional | Number of results to return per page. | |
| published_after | query | string(date-time) | optional | Published after (ISO 8601) | |
| published_before | query | string(date-time) | optional | Published before (ISO 8601) |
curl \
-H "Authorization: Token <YOUR_TOKEN>" \
"https://i-gaming.tools/api/v1/news/"
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://i-gaming.tools/api/v1/news/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Token <YOUR_TOKEN>']);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
const response = await fetch("https://i-gaming.tools/api/v1/news/", {
method: "GET",
headers: {
"Authorization": "Token <YOUR_TOKEN>"
}
});
const data = await response.json();
console.log(data);
import requests
headers = {
"Authorization": "Token <YOUR_TOKEN>"
}
response = requests.get("https://i-gaming.tools/api/v1/news/", headers=headers)
print(response.json())