List GNS news items (paginated with optional filtering) @requires_auth No
Optionaloptions: ListGNSOptionsOptional category, pagination, and filtering parameters
GNS (Galactic News Service) listing options Extends base options with GNS-specific faction filtering
Optionalauthor?: stringAuthor name to filter by
Optionalcategory?: stringNews category to filter by
Optionalend_date?: numberFilter news up to this Unix timestamp
Optionalfaction?: stringFaction name to filter by (GNS only)
Optionalfaction_type?: stringFaction type to filter by (GNS only)
Optionalitem_count?: numberNumber of items to retrieve. Default: 50, Max: 50
Optionalsearch?: stringSearch term to filter by
Optionalstart_date?: numberFilter news starting from this Unix timestamp
Optionalstart_index?: numberStarting position (1-based). Default: 1
const news = await client.news.gns.list();
const economyNews = await client.news.gns.list({ category: 'economy' });
const moreNews = await client.news.gns.list({ start_index: 51, item_count: 50 });
const searchNews = await client.news.gns.list({ search: 'battle', author: 'John Doe' });
const factionNews = await client.news.gns.list({ faction: 'Empire', faction_type: 'government' });
Galactic News Service (GNS) resource
See
https://www.swcombine.com/ws/v2.0/documentation/news/gns/category/ SW Combine API Documentation