v1

latestOpenAPI 3.0.0MIT (code only)2026-07-1783284693.9 KB
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). Prefer using page[number] instead.

page[number]integer

Page number for pagination (starts at 1).

page[size]integer

Number of results per page. Maximum 200.

filter[faction_type]string

Category of faction. Example: Lawful

filter[has_reputation]boolean

When true, only factions with a reputation system are returned. Example: true

filter[lawful]boolean

When true, only lawful factions are returned. Example: true

filter[is_npc]boolean

When true, only NPC-controlled factions are returned. Example: false

filter[hide_in_delphi_app]boolean

When true, only factions hidden from the Delphi app are returned. Note: the index endpoint excludes hidden factions by default. Example: false

filter[query]string

Search factions by name or description. Example: ArcCorp

sortstring
Example:-name

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

Response

List of factions

Example response

{
  "data": [
    {
      "uuid": "4e429470-4d4e-4c2b-a4ac-4de42ada16e0",
      "name": "Aciedo Communications",
      "faction_type": "Lawful",
      "lawful": true,
      "has_reputation": true
    }
  ],
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 5,
    "per_page": 30,
    "to": 30,
    "total": 150,
    "path": "https://api.star-citizen.wiki/api/vehicles"
  }
}