client.faction resource exposes the faction layer of the Star Wars Combine economy and organization system. Factions are the primary organizational unit in the game — governments, corporations, crime syndicates, and more. You can list all factions, retrieve a specific one by UID, browse membership, inspect financial budgets, query stockholders, and page through the full credit transaction history for any faction.
Listing factions
faction.list()
Returns a paginated list of all factions in the game.The faction’s unique identifier in
"type:id" format, e.g. "20:123".The faction’s display name.
Getting a single faction
faction.get()
Retrieves full details for a faction by UID.The faction UID in
"type:id" format, e.g. "20:123".Faction UIDs use type prefix
20, e.g. "20:123". Character UIDs use type prefix 1, e.g. "1:12345". Always use the correct prefix for the resource type you are querying.Members
faction.members.list()
Returns a paginated list of characters who are members of the faction.The faction UID.
1-based index of the first member to return.
Number of members per page.
Budgets
faction.budgets.list()
Returns all budget allocations for the faction. Budgets are returned as a flat array rather than a paginated result.The faction UID.
budgets.list() returns a plain FactionBudget[] array, not a Page<T>. There is no pagination — all budgets are returned in a single response.Stockholders
faction.stockholders.list()
Returns a paginated list of stockholders in the faction, ordered by share count.The faction UID.
1-based index of the first stockholder to return.
Number of stockholders per page.
Credit log
faction.creditlog.list()
Returns a paginated history of credit transactions for the faction.The faction UID.
1-based index of the first log entry to return.
Number of entries per page.
Full example
Related resources
Character
Look up individual characters and their faction privileges.
Datacard
List production datacards licensed to a faction.
Events
Query the event log filtered by faction activity.
Pagination
Learn how Page<T> works and how to auto-paginate.