Skip to contents

Wrapper around the 'historicalprojects_list' endpoint to retrieve a list of historical projects based on the specified query parameters.

Usage

get_historicalprojects(...)

Value

A dataframe containing the historical projects that match the specified query parameters: https://api.ecopi.de/api/docs/#tag/v0.1/operation/v0.1_historicalprojects_list.

Examples

# retrieve a dataframe of all historical projects
if (FALSE) { # \dontrun{
get_historicalprojects()
} # }

# Retrieve a list of projects that contain 'red_panda' or 'green_banana' in their name
if (FALSE) { # \dontrun{
get_historicalprojects(project_name__in = "red_panda, green_banana")
} # }