List Factions
Returns paginated factions sorted by name by default. Factions hidden from the Delphi app are excluded.
Query parameters
Page number for pagination (starts at 1). Prefer using page[number] instead.
Page number for pagination (starts at 1).
Number of results per page. Maximum 200.
Category of faction. Example: Lawful
When true, only factions with a reputation system are returned. Example: true
When true, only lawful factions are returned. Example: true
When true, only NPC-controlled factions are returned. Example: false
When true, only factions hidden from the Delphi app are returned. Note: the index endpoint excludes hidden factions by default. Example: false
Search factions by name or description. Example: ArcCorp
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"
}
}