TheDocumentation Index
Fetch the complete documentation index at: https://swc-sdk.zeltros.dev/llms.txt
Use this file to discover all available pages before exploring further.
client.news resource gives you programmatic access to two distinct news feeds in the Star Wars Combine universe. The Galactic News Service (GNS) carries in-character news written by players, while sim news carries out-of-character announcements and updates from the game administration. Both feeds expose a list method for pagination and a get method for fetching individual articles by numeric ID.
Galactic News Service (GNS)
The GNS is the primary in-character news feed — player-authored articles covering galactic events, faction announcements, and political developments.news.gns.list()
Returns a paginated list of GNS articles, ordered by publication date.1-based index of the first article to return.
Number of articles per page.
news.gns.get()
Retrieves the full content of a single GNS article by its numeric ID.The numeric ID of the GNS article. Note this is a
number, not a string UID.GNS article IDs are plain numbers, not the
"type:id" string format used by entity UIDs elsewhere
in the SDK.Sim news
Sim news carries out-of-character content: game updates, rule changes, event announcements, and administration notices. Articles can be filtered by category.news.simNews.list()
Returns a paginated list of sim news posts.Optional category filter. Omit to return posts across all categories.
1-based index of the first post to return.
Number of posts per page.
news.simNews.get()
Retrieves the full content of a single sim news post by its numeric ID.The numeric ID of the sim news post.
Full example
Related resources
Events
Query in-game activity events for characters, factions, and combat.
Character
Identify the author of a GNS article by character UID.
Faction
Look up faction details referenced in galactic news articles.
Pagination
Learn how Page<T> works and how to auto-paginate news feeds.