Overview
GET/public/themesthemes

List every live theme (suite-wide; empty in production)

List themes.

Responses
200

Live themes

  • keystring
  • labelstring
  • basedOnstring?
  • dataobject
  • createdAtstring
  • updatedAtstring
Example
[
  {
    "key": "string",
    "label": "string",
    "basedOn": "string",
    "data": {},
    "createdAt": "string",
    "updatedAt": "string"
  }
]
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/public/themes" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/public/themes", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();