This a GBIF API beginners guide.

The GBIF API technical documentation might be a bit confusing if you have never used an API before. The goal of this guide is to introduce the GBIF API to a semi-technical user who may have never used an API before.

The purpose of the GBIF API is to give users access to GBIF databases in a safe way. The GBIF API also allows GBIF.org and rgbif to function.

You do not need any special software or skills to access the GBIF API. You simply have to visit a URL.

https://api.gbif.org/v1/species/match?name=Passer%20domesticus

You should see a wall of text known as JSON.

{
  "usageKey": 5231190,
  "scientificName": "Passer domesticus (Linnaeus, 1758)",
  "canonicalName": "Passer domesticus",
  "rank": "SPECIES",
  "status": "ACCEPTED",
  "confidence": 98,
  "matchType": "EXACT",
  "kingdom": "Animalia",
  "phylum": "Chordata",
  "order": "Passeriformes",
  "family": "Passeridae",
  "genus": "Passer",
  "species": "Passer domesticus",
  "kingdomKey": 1,
  "phylumKey": 44,
  "classKey": 212,
  "orderKey": 729,
  "familyKey": 5264,
  "genusKey": 2492321,
  "speciesKey": 5231190,
  "synonym": false,
  "class": "Aves"
}

You can use a chrome extension to make the JSON look more readable.

This link just performed a match query of all species records with “Passer domesticus” (House sparrow) in the GBIF backbone. This is useful for getting GBIF taxonkeys (“usageKey” here). See this post explaining the difference between different GBIF taxonomic keys.

JSON can become very complex and nested. You might be thinking that a table would be more convenient. I will show you some strategies for converting to a table later on. Highly nested data is a common headache of working with JSON.

API Examples

The basic pattern of an API call:

https:// base url / api / function ? parameter = query

  • base url : this will always be https://api.gbif.org/v1/
  • api : this is the GBIF API group/namespace you want to query. GBIF has a few of these: species, download, occurrence, dataset ...
  • function : the functionality you want to use.
  • parameter : the parameters for your API call. A ? is sometimes used.
  • query : the query you fill in. Sometimes will be free text and sometimes will be a predefined argument.

The GBIF species API is one of the more useful APIs to know. Often the best way to learn how an API works is by looking at examples. The name matcher is one of the more useful GBIF API endpoints.

https://api.gbif.org/v1/species/match?name=Passer domesticus
https://api.gbif.org/v1/species/match?name=Passer domesticus
The most interesting part of the JSON result is the "usageKey": 5231190, which is the GBIF taxonkey for house sparrows. A taxonkey is a GBIF internal id for a species or taxnomic group. These are useful in other parts of the API.

https://api.gbif.org/v1/species/match?name=Tracheophyta
https://api.gbif.org/v1/species/match?name=Tracheophyta
"usageKey": 7707728 is the GBIF taxonkey for vascular plants.

? is the so-called query parameter (more info). It is usually hard to predict when you will need ? before seeing an example. You might have noticed that your web browser filled in %20 for the spaces in the last examples (you usually don’t need to add this yourself).

You can also get lists of species from higher groups using the species API.

https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=7707728
https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=7707728
Will give back a list of vascular plant species information. This will just be the first 20 records, so it is not very useful.

You can make use of the limit parameter to get back more results, but only up to 1000 at a time. This is because these results are usually held in a memory cache on GBIF servers. This design decision helps GBIF.org run more quickly. These 20 results should load quickly. And these 100 results should load more slowly.

https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=212&limit=100
https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=212&limit=100
Will give back 100 bird species records.

You can also use the offset parameter to skip through the first page of results to get to the next 1000 records.

https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=212&limit=1000&offset=1000
https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=212&limit=1000&offset=1000
Get the next 1000 records of birds. Offset will move the window of results up by 1000. You can page through API results if you want more records, but you can only go 100,000 records deep.

Notice the use of & to combine parameters.

https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=212&limit=1000&offset=2000
https://api.gbif.org/v1/species/search?rank=SPECIES&highertaxon_key=212&limit=1000&offset=2000
Page through 1000 more records.

There are also other useful functions of the species API. Here are few examples of how to get synonyms and common names.

https://api.gbif.org/v1/species/212/synonyms
https://api.gbif.org/v1/species/212/synonyms
All taxonomic synonyms of birds (there are none).

https://api.gbif.org/v1/species/7707728/synonyms
https://api.gbif.org/v1/species/7707728/synonyms
All taxonomic synonyms of Tracheophyta.

https://api.gbif.org/v1/species/7707728/vernacularNames
https://api.gbif.org/v1/species/7707728/vernacularNames
Gives you any common names for Tracheophyta, commonly known as "vascular plants".

Hopefully with this introduction you will be able to figure out how the other GBIF API(s) work. Check out these other examples.

Using Curl

So far all of the examples I have been showing you are just links accessed in the browser. Usually the main reason you would want to use an API is because you want software, to interact with GBIF somehow.

Along with your web browser you can also use a command line program called curl. We can visit this page using curl https://api.gbif.org/v1/species/7707728/vernacularNames. If you have curl installed, you should be able to paste this into your any command line shell.

curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET https://api.gbif.org/v1/species/7707728/vernacularNames

This should print the same result you saw in your web browser. This by itself is not useful. This would need to be back of something larger, to be useful. For example, getting all the vernacular names of humming birds would be an interesting project.

Most scripting languages will have a library for doing http requests. I often use use the GBIF API from within R with the packages httr or jsonlite.

httr::GET("https://api.gbif.org/v1/species/match?name=Trochilidae") %>%
httr::content()

jsonlite::fromJSON("https://api.gbif.org/v1/species/match?name=Trochilidae")

Working with JSON results in R

JSON usually isn’t a useful format for most end users, who would usually rather have a table. Turning JSON into a table can usually be done with a little bit of effort depending on the degree of JSON nesting.

Below gets all of the vernacular names of Tracheophyta back as a data.frame in R.

library(jsonlite)

res = fromJSON("https://api.gbif.org/v1/species/7707728/vernacularNames",flatten = TRUE)

res$results # get a table of results

Unfortunately, turning JSON into a table is not always this easy. I have found purrr to be helpful in working with highly nested JSON.

Downloads

So far we have only covered getting data from the GBIF api. With the query (?) parameter we have sent back a few words or numbers, but often we need to send something more significant back to the GBIF servers, like an entire file.

The downloads API is the primary place where sending a file to GBIF is useful.

This file is a request to GBIF to download all of the occurrences from Chile. Put this in a file called query.json.

{
"creator": "fakeuser12",
"notification_address": [
"youremail1984@gbif.org"
],
"sendNotification": true,
"format": "SIMPLE_CSV",
"predicate": {
"type": "and",
"predicates": [
{
"type": "in",
"key": "COUNTRY",
"values": ["CL"]
}
]}}

userName:PASSWORD should be replaced with your GBIF username and password (for example: fakeuser12:12dfakePassword#osj323). Run this on the command line in the directory where you have your query.json file.

curl --include --user userName:PASSWORD --header "Content-Type: application/json" --data @query.json https://api.gbif.org/v1/occurrence/download/request

You could do the same thing also in R. Again here user and pwd are the your GBIF username and password.

library(httr)

POST(url = http://api.gbif.org/v1/occurrence/download/request, 
config = authenticate(user, pwd), 
add_headers("Content-Type: application/json"),
body = upload_file("query.json"), # path to your local file
encode = 'json') %>% 
content(as = "text")

And again you can always turn to rgbif for doing something like this quite compactly. See here for a nice way to save your GBIF credentials.

# Here user,pwd, and email are your GBIF credentials.
library(rgbif)

occ_download(
pred("country", "CL"),
format = "SIMPLE_CSV",
user=user,pwd=pwd,email=email
)

You might be thinking that this query is easier to do in the web portal. This is true. The motivation to do it this way would be if you need to do it repeatedly. Also certain features (such as not queries) are only available via the API.

Further reading