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

GET: Games by publisher

/v1/publisher/{publiher_name}

Attributes

publisher_name

String: URL encoded publisher 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.

Developer

Boolean: Returned game must have a developer 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 publisher “Midway Games”, filtered to the Sega Dreamcast site and must have a developer set.

Endpoint

/v1/publisher/Midway+Games?site=dc&picture=1

Response

{
    "Requester": "f13",
    "Route": "https://api.retrocrypt.com/rest/v1/publisher/Midway+Games",
    "Status": "200",
    "Message": "success",
    "Result_count": 8,
    "Results": [
        {
            "Game": {
                "ID": "110003",
                "Title": "4 Wheel Thunder",
                "Description": "",
                "Picture": "http://dc.retrocrypt.com/inc/game_images/1624650557.png",
                "Year": "2000",
                "Youtube": "https://www.youtube.com/embed/5nWWGJkEA7c",
                "Developer": "Kalisto Entertainment",
                "Publisher": "Midway Games",
                "URL": "http://dc.retrocrypt.com/game/110003/4+Wheel+Thunder/",
                "Site": {
                    "ID": "11",
                    "Slug": "DC",
                    "Title": "RetroCrypt Dreamcast",
                    "URL": "http://dc.retrocrypt.com"
                },
                "Routes": {
                    "Year": "https://api.retrocrypt.com/rest/v1/year/2000",
                    "Developer": "https://api.retrocrypt.com/rest/v1/developer/Kalisto+Entertainment",
                    "Publisher": "https://api.retrocrypt.com/rest/v1/publisher/Midway+Games",
                    "Cheats": "https://api.retrocrypt.com/rest/v1/game/cheats/110003",
                    "Game": "https://api.retrocrypt.com/rest/v1/game/110003"
                }
            }
        },
        ....
        {
            "Game": {
                "ID": "110442",
                "Title": "San Francisco Rush 2049",
                "Description": "",
                "Picture": "http://dc.retrocrypt.com/inc/game_images/1621488599.jpg",
                "Year": "2000",
                "Youtube": "https://www.youtube.com/embed/eSGY2tdudoU",
                "Developer": "Midway Games West",
                "Publisher": "Midway Games",
                "URL": "http://dc.retrocrypt.com/game/110442/San+Francisco+Rush+2049/",
                "Site": {
                    "ID": "11",
                    "Slug": "DC",
                    "Title": "RetroCrypt Dreamcast",
                    "URL": "http://dc.retrocrypt.com"
                },
                "Routes": {
                    "Year": "https://api.retrocrypt.com/rest/v1/year/2000",
                    "Developer": "https://api.retrocrypt.com/rest/v1/developer/Midway+Games+West",
                    "Publisher": "https://api.retrocrypt.com/rest/v1/publisher/Midway+Games",
                    "Cheats": "https://api.retrocrypt.com/rest/v1/game/cheats/110442",
                    "Game": "https://api.retrocrypt.com/rest/v1/game/110442"
                }
            }
        }
    ]
}