Problem 4

May 31, 2025 ยท View on GitHub

Provide a REST API to offer in a single endpoint God Data from multiple Mythologies like greek, roman, nordic, indian or celtiberian. The endpoint will accept request in the following endpoint: GET /api/v1/gods. The development will return the information once the endpoint aggregate the information from all mythologies.

Notes:

Examples:

  • GET /api/v1/gods - Returns all gods using the following structure:
[
    {
        "id": 1,
        "mythology":"greek",
        "god": "Zeus"
    }
]