Get Manifest
GET
/api/superadmin/prompts/manifest
const url = 'https://example.com/api/superadmin/prompts/manifest';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/superadmin/prompts/manifest \ --header 'Authorization: Bearer <token>'Snapshot of registered prompts this process.
Mirrors what resolve_prompt_or_inline() has registered with the
in-process ContextHubManifest. Useful before queries land in the
warehouse — operators can confirm “is the right commit loaded?”
independent of LLM traffic.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
Response Get Manifest Api Superadmin Prompts Manifest Get
object
key
additional properties
any
Example generated
{}