rl_threats: Get species threats by taxon name, IUCN id, and region

View source: R/rl_threats.R

rl_threatsR Documentation

Get species threats by taxon name, IUCN id, and region

Description

Get species threats by taxon name, IUCN id, and region

Usage

rl_threats(
  name = NULL,
  id = NULL,
  region = NULL,
  key = NULL,
  parse = TRUE,
  ...
)

rl_threats_(name = NULL, id = NULL, region = NULL, key = NULL, ...)

Arguments

name

(character) A taxonomic name

id

(character) An IUCN identifier

region

(character) A region name, see rl_regions for acceptable region identifiers (use the entries in the identifier column)

key

A IUCN API token. See rl_use_iucn.

parse

(logical) Whether to parse to list (FALSE) or data.frame (TRUE). Default: TRUE

...

Curl options passed to HttpClient

Value

A list, with the data in the result slot, unless using a function with a trailing underscore, in which case json as character string is returned.

References

API docs at https://apiv3.iucnredlist.org/api/v3/docs

Examples

## Not run: 
rl_threats('Fratercula arctica')
rl_threats('Fratercula arctica', region = 'europe')
rl_threats(id = 12392)
rl_threats(id = 22694927, region = 'europe')
rl_threats(name = 'Abies numidica')
rl_threats_('Fratercula arctica')

rl_threats(id = 62290750)

## End(Not run)

ropenscilabs/rredlist documentation built on Nov. 18, 2022, 7:06 p.m.