Skip to main content

Get Guides

GET 

/games/:game-id/guides

Get all guides for a game. Successful request will return an array of Guide Objects.

Request

Sorting filters

Parameters

    name string

    Sort results alphabetically by name using the _sort query parameter name. For example _sort=name would return guides from A-Z.

    date_live string

    Sort results by the date they went live using the _sort query parameter date_live. For example _sort=-date_live would return the most recently live guides.

    date_updated string

    Sort results by the date they were last updated using the _sort query parameter date_updated. For example _sort=-date_updated would return the most recently updated guides.

    submitted_by string

    Sort results by the authors ID using the _sort query parameter submitted_by. For example _sort=submitted_by would return guides from authors who have been registered the longest.

    visits_today string

    Sort results by the number of visits in the last 24hours using the _sort query parameter visits_today. For example _sort=-visits_today would return the most popular guides from the last 24hours based on the number of visits.

    visits_total string

    Sort results by the total number of visits using the _sort query parameter visits_total. For example _sort=-visits_total would return the most popular guides based on the number of visits.

    comments_total string

    Sort results by the total number of comments using the _sort query parameter comments_total. For example _sort=-comments_total would return the guides with the most comments.

Responses

Successful Request