get_islands: Get list of Fortnite Creative islands

View source: R/islands.R

get_islandsR Documentation

Get list of Fortnite Creative islands

Description

Get list of Fortnite Creative islands

Usage

get_islands(limit = 50, offset = 0, order_by = "plays", order = "desc")

Arguments

limit

Maximum number of results (default: 50)

offset

Number of results to skip

order_by

Field to order by ("plays", "lastPlayed", etc.)

order

Sort order ("asc" or "desc")

Value

A tibble with island data

Examples

# Example with mock response
mock_response <- list(
  islands = list(
    list(code = "1234-5678-9012", title = "Mock Island"),
    list(code = "2345-6789-0123", title = "Test Island")
  )
)
# In practice, this would come from the API

## Not run: 
islands <- get_islands(limit = 50)

## End(Not run)

fortniteR documentation built on Aug. 8, 2025, 7:38 p.m.