themes

Get specific theme details.

This endpoint will retrieve the details of a specific theme.

get/themes/{themeID}

Path parameters

themeIDinteger required

ID of the theme.

Response

Successful GET Theme Details JSON response

object required

Example response

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

Changes