GET /api/public/catalog

What can be ordered: the protocols, the professions with what each answers and requires, every standard with its source, the prices and the bundles.

Surface: public. Who may call: public. Key: public.catalog.

Example request

curl -X GET https://caremcp.com/api/public/catalog

Input schema

{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {}
}

Output schema

{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "protocols": {
   "type": "array",
   "items": {}
  },
  "professions": {
   "type": "array",
   "items": {}
  },
  "standards": {
   "type": "array",
   "items": {}
  },
  "prices": {
   "type": "array",
   "items": {}
  },
  "together": {
   "type": "array",
   "items": {}
  }
 },
 "required": [
  "protocols",
  "professions",
  "standards",
  "prices",
  "together"
 ],
 "additionalProperties": false
}