action tcgdex_get_retreats_retreat { label: "get_retreats_retreat" provider: tcgdex method: GET path: "/retreats/{retreat}" encoding: json input: { type: "object" properties: { retreat: { type: "string" } } required: ["retreat"] additionalProperties: false } output: { type: "object" required: ["cards", "name"] properties: { cards: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } name: { type: "string" } } } }