In-Game
Factions

Get Faction Detail

Returns full details for a single faction, including reputation ladder with standings when the faction has a reputation system. Factions hidden from the Delphi app are excluded.

get/api/factions/{faction}

Path parameters

factionstring uuid required

Faction UUID.

Example:4e429470-4d4e-4c2b-a4ac-4de42ada16e0

Response

Faction detail

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 this faction.

descriptionstring nullable

Lore description of the faction.

default_reactionstring

Default reaction towards the player. One of: Friendly, Hostile, Neutral.

able_to_arrestboolean

Whether the faction can arrest players.

polices_lawful_trespassboolean

Whether the faction enforces trespass violations against lawful characters.

polices_criminalityboolean

Whether the faction actively polices criminal activity.

no_legal_rightsboolean

Whether the faction operates without legal protections.

headquartersstring nullable

Location of the faction's headquarters.

foundedstring nullable

Founding date or era of the faction.

leadershipstring nullable

Current leadership of the faction.

areastring nullable

Primary area of operations.

focusstring nullable

Primary focus or industry of the faction.

sort_order_scopestring nullable

Scope key used for sort ordering within reputation tiers.

Example response

{
  "uuid": "4e429470-4d4e-4c2b-a4ac-4de42ada16e0",
  "name": "Aciedo Communications",
  "faction_type": "Lawful",
  "lawful": true,
  "has_reputation": true,
  "default_reaction": "Neutral",
  "reputation_ladder": {
    "uuid": "4e429470-4d4e-4c2b-a4ac-4de42ada16e0",
    "name": "Aciedo Communications",
    "faction_type": "Lawful",
    "lawful": true,
    "has_reputation": true,
    "scope_name": "FactionReputation",
    "display_name": "Standing",
    "reputation_ceiling": 95250,
    "standings": [
      {
        "uuid": "bcd1f776-9a6e-4ffd-85c4-6df64f4cf2ed",
        "name": "Affinity_Good_100_Exalted",
        "faction_type": "Lawful",
        "lawful": true,
        "has_reputation": true,
        "display_name": "Exalted",
        "min_reputation": 10000
      }
    ]
  }
}

Changes