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.
Query parameters
Page number for pagination (starts at 1).
Page number for pagination (starts at 1).
Number of results to return per page.
Available Comm-Link includes
Exact match on the Comm-Link CIG ID
Partial match on the Comm-Link title
Full-text search within English Comm-Link translations
Exact match on channel name (see GET /api/comm-links/filters for valid values)
Exact match on series name (see GET /api/comm-links/filters for valid values)
Exact match on category name (see GET /api/comm-links/filters for valid values)
Filter by publication year (YYYY) or exact date (YYYY-MM-DD)
Sort field. Prefix with "-" for descending. Supported: id, title, images_count, links_count, channel, category, series, created_at.
Response
List of Comm-Links
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"
}
]