{
  "endpoints": {
    "GET /health": "Health check",
    "GET /output": "Get all outfit-changer outputs with pagination (params: page_no, page_size)",
    "POST /avatar": "Upload image and swap face with costume avatar",
    "POST /outfit-changer": "Upload image and get outfit changed result",
    "POST /outfit-editor": "Upload image and edit outfit with AI"
  },
  "message": "Outfit Changer API",
  "required_params": {
    "/avatar": {
      "costume": "1, 2, 3, 4, or 5",
      "gender": "male or female",
      "image": "Image file (png, jpg, jpeg, gif, webp)"
    },
    "/outfit-changer": {
      "gender": "male or female",
      "image": "Image file (png, jpg, jpeg, gif, webp)"
    },
    "/outfit-editor": {
      "image": "Image file (png, jpg, jpeg, gif, webp)",
      "outfit_type": "1, 2, 3, or 4"
    },
    "/output": {
      "page_no": "Page number (optional, default: 1)",
      "page_size": "Page size (optional, default: 10, max: 100)"
    }
  }
}
