Galactapedia
RSI-Website

Galactapedia Overview

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.

get/api/galactapedia

Query parameters

pageinteger

Page number for pagination (starts at 1).

page[number]integer

Page number for pagination (starts at 1).

page[size]integer

Number of results to return per page.

filter[category]string
Example:Animals

Exact match on category name (see GET /api/galactapedia/filters for valid values)

filter[tag]string
Example:100i

Exact match on tag name (see GET /api/galactapedia/filters for valid values)

filter[template]string
Example:Civilization

Exact match on template name (see GET /api/galactapedia/filters for valid values)

filter[title]string
Example:Messer

Partial match on the article title

filter[created_at]string
Example:2025

Filter by creation year (YYYY), year-month (YYYY-MM), or exact date (YYYY-MM-DD)

sortstring
Example:-id

Sort field. Prefix with "-" for descending. Supported: title, categories_count, tags_count, related_articles_count.

Response

List of Galactapedia Articles

idstring

CIG identifier

titlestring
slugstring
thumbnailstring nullable
typestring nullable

Alias for template, the first template name

templatestring nullable
categorystring nullable

Comma-separated category names

tagstring nullable

Comma-separated tag names

rsi_urlstring
api_urlstring
web_urlstring
created_atstring
categories_countinteger nullable

Number of categories (present when sorting by categories_count)

tags_countinteger nullable

Number of tags (present when sorting by tags_count)

related_articles_countinteger nullable

Number of related articles (present when sorting by related_articles_count)

created_at_humanstring

Example response

[
  {
    "created_at_human": "1 hour ago"
  }
]

Changes