In-Game
Factions

List Factions

Returns paginated factions sorted by name by default. Factions hidden from the Delphi app are excluded.

get/api/factions

Query parameters

pageinteger

Page number for pagination (starts at 1).

page[number]integer

Page number for pagination (starts at 1).

page[size]integer

Number of results to return per page.

filter[faction_type]string
Example:Lawful

Category of faction

filter[has_reputation]boolean
Example:true

When true, only factions with a reputation system are returned

filter[lawful]boolean
Example:true

When true, only lawful factions are returned

filter[is_npc]boolean
Example:true

When true, only NPC-controlled factions are returned

filter[hide_in_delphi_app]boolean
Example:true

When true, only factions hidden from the Delphi app are returned

filter[query]string
Example:ArcCorp

Search factions by name or description

sortstring
Example:-name

Sort field. Prefix with "-" for descending. Supported: name, faction_type.

Response

List of factions

uuidstring uuid

Unique faction identifier.

namestring

Display name of the faction.

faction_typestring nullable

Category of the faction. One of: Lawful, Unlawful, LawEnforcement, PrivateSecurity.

lawfulboolean nullable

Whether the faction is considered lawful.

is_npcboolean

Whether the faction is NPC-controlled.

has_reputationboolean

Whether the faction tracks player reputation.

linkstring uri

API URL for the full faction detail.

Example response

[
  {
    "uuid": "4e429470-4d4e-4c2b-a4ac-4de42ada16e0",
    "name": "Aciedo Communications",
    "faction_type": "Lawful",
    "lawful": true,
    "has_reputation": true
  }
]

Changes