---
title: "Galactapedia Overview"
method: GET
path: "/api/galactapedia"
tags: ["Galactapedia", "RSI-Website"]
---

# Galactapedia Overview

`GET /api/galactapedia`

Returns paginated Galactapedia articles ordered by descending ID by default. Each article includes its templates, categories, and tags. Supports filtering by category, tag, template, title, and creation date. Results can be sorted by title, categories_count, tags_count, and related_articles_count.

## Query parameters

- `page` integer
- `page[number]` integer
- `page[size]` integer
- `filter[category]` string
- `filter[tag]` string
- `filter[template]` string
- `filter[title]` string
- `filter[created_at]` string
- `sort` string

## Response `200`

List of Galactapedia Articles

- GalactapediaArticle[]
  - `id` string — CIG identifier
  - `title` string
  - `slug` string
  - `thumbnail` string, nullable
  - `type` string, nullable — Alias for template, the first template name
  - `template` string, nullable
  - `category` string, nullable — Comma-separated category names
  - `tag` string, nullable — Comma-separated tag names
  - `rsi_url` string
  - `api_url` string
  - `web_url` string
  - `created_at` string
  - `categories` GalactapediaCategory[]
    - `id` string
    - `name` string
  - `categories_count` integer, nullable — Number of categories (present when sorting by categories_count)
  - `tags` GalactapediaTag[]
    - `id` string
    - `name` string
  - `tags_count` integer, nullable — Number of tags (present when sorting by tags_count)
  - `properties` GalactapediaProperty[]
    - `name` string
    - `value` string
  - `related_articles` GalactapediaRelatedArticle[]
    - `id` string
    - `title` string
    - `url` string
    - `api_url` string
  - `related_articles_count` integer, nullable — Number of related articles (present when sorting by related_articles_count)
  - `translations` union
    - string
    - Translation[]
      - `en` string
      - `de` string
      - `zh` string
  - `created_at_human` string

## Changes

- **2026-04-24** `c096aa819d11` — 2 breaking, 8 info
  - the response property `items/thumbnail` became nullable for the status `200`
  - the `items/id` response's property type changed from `integer` to `string` for status `200`
  - added the new optional `query` request parameter `sort`
  - added the optional property `items/categories_count` to the response with the `200` status
  - …6 more
- **2026-03-29** `8ff40d443bb4` — 1 breaking, 4 warning, 2 info
  - the response's body type changed from `object` to `array` for status `200`
  - deleted the `query` request parameter `sort`
  - removed the optional property `data` from the response with the `200` status
  - removed the optional property `links` from the response with the `200` status
  - …3 more

[Change history](https://skmtc.dev/starcitizenwiki/apis/star-citizen-wiki-api/changes/api/galactapedia/get.md)

---

[API](https://skmtc.dev/starcitizenwiki/apis/star-citizen-wiki-api.md) · [All operations](https://skmtc.dev/starcitizenwiki/apis/star-citizen-wiki-api/llms.txt) · [OpenAPI document](https://skmtc.dev/starcitizenwiki/apis/star-citizen-wiki-api/revisions/5cd81baa02cb?raw)
