Get a specific Sim News item by numeric ID.
Returns the NewsItem object directly — not wrapped in a Page.
Author and faction are normalized to object references with value.
If the API returns an array, the SDK returns the first normalized item.
The NewsItem entity.
List Sim News items (paginated with optional filtering)
Returns a Page of headline metadata entries (attributes.id, attributes.href, attributes.title, value).
Use page.data for the current page items, page.hasMore / page.getNextPage() for pagination,
or for await (const item of page) to iterate through all pages automatically.
@requires_auth No
Optionaloptions: ListNewsOptionsBaseOptional category, pagination, and filtering parameters
Base news listing options (shared between GNS and SimNews)
Optionalauthor?: stringAuthor name to filter by
Optionalcategory?: stringNews category to filter by
Optionalend_date?: numberFilter news up to this Unix timestamp
Optionalitem_count?: numberNumber of items to retrieve. Default: 50, Max: 50
OptionalpageDelay?: numberMilliseconds to wait before fetching each subsequent page. Helps avoid rate limits during auto-pagination.
Optionalsearch?: stringSearch term to filter by
Optionalstart_date?: numberFilter news starting from this Unix timestamp
Optionalstart_index?: numberStarting position (1-based). Default: 1
const page = await client.news.simNews.list();
const playerNews = await client.news.simNews.list({ category: 'player' });
const moreNews = await client.news.simNews.list({ start_index: 51, item_count: 50 });
const searchNews = await client.news.simNews.list({ search: 'update', author: 'Admin' });
console.log(page.data[0].attributes.title);
console.log(page.start, page.total, page.count);
Sim News resource
See
https://www.swcombine.com/ws/v2.0/documentation/news/simnews/category/ SW Combine API Documentation