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.
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.
Exact match on category name (see GET /api/galactapedia/filters for valid values)
Exact match on tag name (see GET /api/galactapedia/filters for valid values)
Exact match on template name (see GET /api/galactapedia/filters for valid values)
Partial match on the article title
Filter by creation year (YYYY), year-month (YYYY-MM), or exact date (YYYY-MM-DD)
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"
}
}