Comm-Links
RSI-Website
Images
Search

Comm-Link Image Search by filename

Search comm-link images by filename with optional tag filtering. Only images without a base image and with non-zero file size are returned.

post/api/comm-link-images/search

Query parameters

filter[tags]string
Example:concept

Partial match on tag name

Request body

querystring required

Search term matched against image filenames (partial match)

Example request

{
  "query": "Starshipbridge"
}

Response

Search for a Comm-Link Image by its filename.

idinteger

Internal database identifier.

namestring

File name or path segment of the image.

rsi_urlstring uri

Full URL to the image on the RSI media CDN.

api_urlstring uri nullable

API URL for this image resource.

altstring

Alternative text for the image.

sizeinteger

File size in bytes.

mime_typestring

MIME type of the image file.

last_modifiedstring date-time

ISO 8601 timestamp of when the image was last modified on the CDN.

similar_urlstring uri

API URL to find visually similar images.

similarityinteger nullable

Similarity percentage to the search image. Only present in reverse image search results.

Example response

[
  {
    "name": "Starshipbridge.jpg",
    "rsi_url": "/media/bluo97w6u7n1ur/source/Starshipbridge.jpg",
    "size": 1504015,
    "mime_type": "image/jpeg"
  }
]

Changes