Comm-Links
RSI-Website

Comm-Links Overview

Returns paginated comm-links ordered by descending ID by default. Supports filtering by channel, category, series, title, content, and publication date. Results can be sorted by id, title, images_count, links_count, channel, category, series, and created_at. Use the include parameter to embed translations, images, or links.

get/api/comm-links

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.

includestring[]

Available Comm-Link includes

filter[id]integer
Example:12663

Exact match on the Comm-Link CIG ID

filter[title]string
Example:This Week in Star Citizen

Partial match on the Comm-Link title

filter[content]string
Example:star citizen

Full-text search within English Comm-Link translations

filter[channel]string
Example:Engineering

Exact match on channel name (see GET /api/comm-links/filters for valid values)

filter[series]string
Example:Around the Verse

Exact match on series name (see GET /api/comm-links/filters for valid values)

filter[category]string
Example:General

Exact match on category name (see GET /api/comm-links/filters for valid values)

filter[created_at]string
Example:2025

Filter by publication year (YYYY) or exact date (YYYY-MM-DD)

sortstring
Example:-id

Sort field. Prefix with "-" for descending. Supported: id, title, images_count, links_count, channel, category, series, created_at.

Response

List of Comm-Links

idinteger

CIG identifier for the Comm-Link

titlestring

Title of the Comm-Link

rsi_urlstring uri

Link to the Comm-Link on the RSI website.

api_urlstring uri

API URL for this Comm-Link resource.

api_public_urlstring uri

Public web URL for this Comm-Link on the API portal.

channelstring

Publishing channel, e.g. Engineering, Transmission.

categorystring

Content category, e.g. General, Community, Lore, Development.

seriesstring

Series the Comm-Link belongs to, e.g. Around the Verse, 10 For the Chairman.

images_countinteger

Total number of images associated with this Comm-Link.

links_countinteger

Total number of external links in the Comm-Link content.

comment_countinteger

Number of comments on the original RSI post.

created_atstring date-time

ISO 8601 timestamp of when the Comm-Link was published.

created_at_humanstring

Human-readable relative time since publication.

Example response

[
  {
    "id": 12663,
    "title": "This Week in Star Citizen",
    "channel": "Engineering",
    "category": "General",
    "series": "Around the Verse",
    "images": [
      {
        "name": "Starshipbridge.jpg",
        "rsi_url": "/media/bluo97w6u7n1ur/source/Starshipbridge.jpg",
        "size": 1504015,
        "mime_type": "image/jpeg"
      }
    ],
    "images_count": 5,
    "links": [
      {
        "href": "http://robertsspaceindustries.com/forums/",
        "text": "forums"
      }
    ],
    "links_count": 3,
    "comment_count": 42,
    "created_at_human": "1 hour ago"
  }
]

Changes