themes

Retrieve an overview of themes.

This endpoint will retrieve an overview of themes.

get/themes

Response

Successful GET Themes JSON response

object required

Example response

{
  "data": [
    {
      "id": 1,
      "type": "themes",
      "attributes": {
        "name": "Watermelon",
        "screenshot": "https://kurozora.app/storage/1/Screenshot.jpeg",
        "downloadLink": "/api/v1/themes/1/download"
      }
    },
    {
      "id": 2,
      "type": "themes",
      "attributes": {
        "name": "Blueberry",
        "screenshot": "https://kurozora.app/storage/2/Screenshot.jpeg",
        "downloadLink": "/api/v1/themes/2/download"
      }
    }
  ]
}

Changes