1. Home
  2. Docs
  3. Documentation
  4. Games
  5. GET: Games by developer

GET: Games by developer

/v1/developer/{developer_name}

Attributes

developer_name

String: URL encoded developer name.

Optional parameters

Optional parameters are included via the query string, optional parameters for the random game route are:

Picture

Boolean: Returned game must include an image.

Publisher

Boolean: Returned game must have a publisher set.

Year

Boolean: Returned game must have a year set.

Youtube

Boolean: Returned game must have a youtube video set.

Site

String: Return a random game from the given site id.

Example

In this example we will return a list of games by the developer “Sega”, filtered to the Sega Master System site.

Endpoint

/v1/developer/Sega?site=ms

Response

{
    "Requester": "f13",
    "Route": "https://retrocrypt.com/rest/v1/developer/Sega",
    "Status": "200",
    "Message": "success",
    "Result_count": 109,
    "Results": [
        {
            "Game": {
                "ID": "30002",
                "Title": "Action Fighter",
                "Description": "",
                "Picture": "https://ms.retrocrypt.com/inc/game_images/1619506955.jpg",
                "Year": "1986",
                "Youtube": "https://www.youtube.com/embed/Lo6pteCRE_I",
                "Developer": "Sega",
                "Publisher": "Sega",
                "URL": "https://ms.retrocrypt.com/game/30002/Action+Fighter/",
                "Site": {
                    "ID": "3",
                    "Slug": "MS",
                    "Title": "RetroCrypt Master System",
                    "URL": "https://ms.retrocrypt.com"
                },
                "Routes": {
                    "Year": "https://retrocrypt.com/rest/v1/year/1986",
                    "Developer": "https://retrocrypt.com/rest/v1/developer/Sega",
                    "Publisher": "https://retrocrypt.com/rest/v1/publisher/Sega",
                    "Cheats": "https://retrocrypt.com/rest/v1/game/cheats/30002",
                    "Game": "https://retrocrypt.com/rest/v1/game/30002"
                }
            }
        },
        ....
        {
            "Game": {
                "ID": "30310",
                "Title": "Zillion II: The Tri Formation",
                "Description": "",
                "Picture": "https://ms.retrocrypt.com/inc/game_images/1621058310.jpg",
                "Year": "1987",
                "Youtube": "https://www.youtube.com/embed/VGnkhcmZvRw",
                "Developer": "Sega",
                "Publisher": "Sega",
                "URL": "https://ms.retrocrypt.com/game/30310/Zillion+II%3A+The+Tri+Formation/",
                "Site": {
                    "ID": "3",
                    "Slug": "MS",
                    "Title": "RetroCrypt Master System",
                    "URL": "https://ms.retrocrypt.com"
                },
                "Routes": {
                    "Year": "https://retrocrypt.com/rest/v1/year/1987",
                    "Developer": "https://retrocrypt.com/rest/v1/developer/Sega",
                    "Publisher": "https://retrocrypt.com/rest/v1/publisher/Sega",
                    "Cheats": "https://retrocrypt.com/rest/v1/game/cheats/30310",
                    "Game": "https://retrocrypt.com/rest/v1/game/30310"
                }
            }
        }
    ]
}