Skip to contents

Search for Games by Name

Usage

get_games(name = "", abbreviation = NULL, ...)

Arguments

name

A search query, character.

abbreviation

An exact abbreviation as listed on speedrun.com. If this is set, name will be ignored.

...

Other named parameters passed to the API.

Value

A tibble with search results

Examples

if (FALSE) {
# Get all games matching Ocarina of Time
get_games(name = "Ocarina of Time")

# Or directly if you know its abbreviation is oot:
get_games(abbreviation = "oot")
}