---
title: "List Factions"
method: GET
path: "/api/factions"
tags: ["Factions"]
---

# List Factions

`GET /api/factions`

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

## Query parameters

- `page` integer
- `page[number]` integer
- `page[size]` integer
- `filter[faction_type]` string
- `filter[has_reputation]` boolean
- `filter[lawful]` boolean
- `filter[is_npc]` boolean
- `filter[hide_in_delphi_app]` boolean
- `filter[query]` string
- `sort` string

## Response `200`

List of factions

- object
  - `data` FactionIndex[]
    - `uuid` string, uuid — Unique faction identifier.
    - `name` string — Display name of the faction.
    - `faction_type` string, nullable — Category of the faction. One of: Lawful, Unlawful, LawEnforcement, PrivateSecurity.
    - `lawful` boolean, nullable — Whether the faction is considered lawful.
    - `is_npc` boolean — Whether the faction is NPC-controlled.
    - `has_reputation` boolean — Whether the faction tracks player reputation.
    - `link` string, uri — API URL for the full faction detail.
  - `links` PaginationLinks — Pagination navigation links.
    - `first` string, nullable — URL to the first page.
    - `last` string, nullable — URL to the last page.
    - `prev` string, nullable — URL to the previous page.
    - `next` string, nullable — URL to the next page.
  - `meta` PaginationMeta — Pagination metadata.
    - `current_page` integer — Current page number.
    - `from` integer — Index of the first item in this page.
    - `last_page` integer — Last available page number.
    - `per_page` integer — Number of items per page.
    - `to` integer — Index of the last item in this page.
    - `total` integer — Total number of items across all pages.
    - `links` object[] — Pagination navigation links with page URLs.
      - `url` string, nullable
      - `label` string
      - `active` boolean
    - `path` string — Base URL path for pagination.

---

[API](https://skmtc.net/starcitizenwiki/apis/star-citizen-wiki-api.md) · [All operations](https://skmtc.net/starcitizenwiki/apis/star-citizen-wiki-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/starcitizenwiki/star-citizen-wiki-api/versions/8b259bb9a44c/schema)
