| rl_synonyms {rredlist} | R Documentation |
Get species synonym information by taxonomic name
rl_synonyms(name = NULL, key = NULL, parse = TRUE, ...) rl_synonyms_(name = NULL, key = NULL, ...)
name |
(character) Binomial taxonomic name |
key |
A IUCN API token. See http://apiv3.iucnredlist.org/api/v3/token to get a token |
parse |
(logical) Whether to parse to list ( |
... |
Curl options passed to |
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.
API docs at http://apiv3.iucnredlist.org/api/v3/docs
## Not run:
rl_synonyms('Loxodonta africana')
rl_synonyms('Loxodonta africana', parse = FALSE)
rl_synonyms_('Loxodonta africana')
## End(Not run)