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 by name in alphabetical order. For example _sort=name would return guides from A-Z.

    date_live string

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

    date_updated string

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

    submitted_by string

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

    visits_today string

    Sort by the number of visits in the last 24hours. 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 by the total number of visits. For example _sort=-visits_total would return the most popular guides based on the number of visits.

    comments_total string

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

See here for more details about using the _sort query parameter.

Responses

Successful Request