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

# 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`

Paginated list of Galactapedia Articles

- object
  - `data` 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
        - `fr` string
    - `created_at_human` string
  - `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)
