v1

latestOpenAPI 3.0.0MIT (code only)2026-07-1783284693.9 KB
Galactapedia

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). Prefer using page[number] instead.

page[number]integer

Page number for pagination (starts at 1).

page[size]integer

Number of results per page. Maximum 200.

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

Paginated list of Galactapedia Articles

Example response

{
  "data": [
    {
      "created_at_human": "1 hour ago"
    }
  ],
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 5,
    "per_page": 30,
    "to": 30,
    "total": 150,
    "path": "https://api.star-citizen.wiki/api/vehicles"
  }
}