eBird API Data is a reusable Django app for loading data from eBird into a database.
The Cornell Laboratory of Ornithology in Ithaca, New York runs the eBird database which collects observations of birds from all over the world. All the observations are published on eBird.org, and they also make them available via an API. This project contains a loader and models to take data from the API and load it into a database. From there you can analyse the data with python, jupyter notebooks, or build a web site.
To get started, you will need to sign up for an eBird account, if you don't already have one and register to get an API key. Make sure you read and understand the Terms of use, and remember bandwidth and servers cost money, so don't abuse the service. If you need large numbers of observations, then sign up to receive the eBird Basic Dataset.
You can use either pip or uv to download the package from PyPI and install it into a virtualenv:
pip install ebird-api-dataor:
uv add ebird-api-dataUpdate INSTALLED_APPS in your Django setting:
INSTALLED_APPS = [
...
ebird.api.data
]Finally, run the migrations to create the tables:
python manage.py migrateIf you check out the code from the repository there is a fully functioning Django site. It contains pages for checklists, observations and species, where you can browse the records or search by location, observer. date. etc. The Django Admin lets you browse and edit the records in the database.
git clone git@github.com:StuartMacKay/ebird-api-data.git
cd ebird-api-dataCreate the virtual environment:
uv venvActivate it:
source .venv/bin/activateInstall the requirements:
uv syncCreate a copy of the .env.example file and add your API key:
cp .env.example .envFor example:
EBIRD_API_KEY=<my api key>Run the database migrations:
python manage.py migrateCreate a user:
python manage.py createsuperuserCreate a copy of the .env.example file and add your API key:
cp .env.example .envEBIRD_API_KEY=<my api key>Now, download data from the API:
python manage.py add_checklists --days -2 US-NY-109This loads all the checklists, submitted in the past two days by birders in Tompkins County, New York, where the Cornell Lab is based. You can use any location code used by eBird, whether it's for a country, state/region, or county. Remember, read the terms of use.
Run the demo:
python manage.py runserverNow, either visit the site, http:localhost:8000/, or log into the Django Admin, http:localhost:8000/admin to browse the tables.
IMPORTANT: There is a serious flaw in the eBird API - observers are identified by name. That means if more than one observer shares the same name then only one Observer record will be added to the database, and all the checklists will be assigned to them. In practice, most people ensure their name is unique by adding middle initial's etc. However it is a problem with "Anonymous eBirder". The solution is to add two Observer records with the name "Anonymous eBirder", and a fake identifier, e.g. ANON1, ANON2, etc. That way the loader will first scrape the web page for the checklist where the identifier, e.g. USER2743448, can be found, and so the checklist will be assigned to the correct Observer. Use this workaround for any other observers you encounter that share the same name. This won't work retroactively, but then you can delete the checklists, and manually reload them.
- Documentation: https://ebird-api-data.readthedocs.io/en/latest/
- Issues: https://todo.sr.ht/~smackay/ebird-api-data
- Repository: https://git.sr.ht/~smackay/ebird-api-data
- Announcements: https://lists.sr.ht/~smackay/ebirders-announce
- Discussions: https://lists.sr.ht/~smackay/ebirders-discuss
- Development: https://lists.sr.ht/~smackay/ebirders-develop
The repository is also mirrored on Github:
- Repository: https://github.com/StuartMacKay/ebird-api-data
The app is tested on Python 3.10+, and officially supports Django 4.2, 5.0 and 5.1.
eBird API Data is released under the terms of the MIT license.