Overview
GET/system/server-bagsystem

List server-bag entries (public; optional ?key= exact-match filter)

List server-bag.

Parameters
  • keyquery · optionalstring
Responses
200

Server bag entries

  • keystring
  • valueany

    Arbitrary JSON value

  • descriptionstring
  • createdAtstring
  • updatedAtstring
Example
[
  {
    "key": "string",
    "value": {},
    "description": "string",
    "createdAt": "string",
    "updatedAt": "string"
  }
]
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/system/server-bag" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/system/server-bag", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();