{"id":26120489,"url":"https://github.com/projectbabbler/ebird-js","last_synced_at":"2025-07-21T22:34:16.705Z","repository":{"id":57219074,"uuid":"49187527","full_name":"ProjectBabbler/ebird-js","owner":"ProjectBabbler","description":"JS wrapper to the ebird API.","archived":false,"fork":false,"pushed_at":"2018-11-24T19:35:49.000Z","size":38,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-23T15:54:24.582Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ProjectBabbler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-07T07:01:48.000Z","updated_at":"2022-08-26T06:47:12.000Z","dependencies_parsed_at":"2022-08-29T02:11:58.661Z","dependency_job_id":null,"html_url":"https://github.com/ProjectBabbler/ebird-js","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ProjectBabbler/ebird-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectBabbler%2Febird-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectBabbler%2Febird-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectBabbler%2Febird-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectBabbler%2Febird-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProjectBabbler","download_url":"https://codeload.github.com/ProjectBabbler/ebird-js/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProjectBabbler%2Febird-js/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266393421,"owners_count":23922378,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-10T13:15:09.334Z","updated_at":"2025-07-21T22:34:16.677Z","avatar_url":"https://github.com/ProjectBabbler.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ebird-js\nJS wrapper to the ebird API.\n\n[![Build Status](https://travis-ci.org/ProjectBabbler/ebird-js.svg)](https://travis-ci.org/ProjectBabbler/ebird-js)\n\n[ebird 1.1 docs](https://confluence.cornell.edu/display/CLOISAPI/eBird+API+1.1)\n\nebird-js is just a convenience library for interacting with the ebird 1.1 api.\n\n## How to use\n\n```\nnpm install --save ebird-js\n```\n\n```js\nvar ebird = require('ebird-js');\n\nvar params = {\n    lng: '-76.51',\n    lat: '42.46',\n};\n\nebird.obs.geo.recent(params).then((data) =\u003e {\n    // An array of observations\n    console.log(data);\n}).catch((error) =\u003e {\n    console.log(error);\n})\n```\n\n## Default Params\n`fmt` defaults to `json`.\n\nAll others see [ebird 1.1 docs](https://confluence.cornell.edu/display/CLOISAPI/eBird+API+1.1)\n\n## Endpoints\n\n### data\nThis path contains data services.\n\n#### data.obs.geo.recent\n\nreturns recent nearby observations\n\n```js\n    ebird.data.obs.geo.recent(params)\n```\n\n#### data.obs.geo_spp.recent\n\nreturns recent nearby observations of a species\n\n```js\n    ebird.data.obs.geo_spp.recent(params)\n```\n\n#### data.obs.hotspot.recent\n\nreturns recent observations at hotspots\n\n```js\n    ebird.data.obs.hotspot.recent(params)\n```\n\n#### data.obs.hotspot_spp.recent\n\nreturns recent observations of a species at hotspots\n\n```js\n    ebird.data.obs.hotspot_spp.recent(params)\n```\n\n#### data.obs.loc.recent\n\nreturns recent observations at locations\n\n```js\n    ebird.data.obs.loc.recent(params)\n```\n\n#### data.obs.loc_spp.recent\n\nreturns recent observations of a species at locations\n\n```js\n    ebird.data.obs.loc_spp.recent(params)\n```\n\n#### data.obs.region.recent\n\nreturns recent observations in a region\n\n```js\n    ebird.data.obs.region.recent(params)\n```\n\n#### data.obs.region_spp.recent\n\nreturns recent observations of a species in a region\n\n```js\n    ebird.data.obs.region_spp.recent(params)\n```\n\n#### data.notable.geo.recent\n\nreturns recent nearby notable observations\n\n```js\n    ebird.data.notable.geo.recent(params)\n```\n\n#### data.notable.hotspot.recent\n\nreturns recent notable observations at hotspots\n\n```js\n    ebird.data.notable.hotspot.recent(params)\n```\n\n#### data.notable.loc.recent\n\nreturns recent notable observations at locations\n\n```js\n    ebird.data.notable.loc.recent(params)\n```\n\n#### data.notable.region.recent\n\nreturns recent notable observations in a region\n\n```js\n    ebird.data.notable.region.recent(params)\n```\n\n#### data.nearest.geo_spp.recent\n\nreturns nearest locations with observations of a species\n\n```js\n    ebird.data.nearest.geo_spp.recent(params)\n```\n\n### products\n\nThis path contains products consisting of aggregated raw data.\n\n#### product.obs.hotspot.recent\n\nThis service provides a summary of recent sightings for birding hotspots.\n\n```js\n    ebird.data.nearest.geo_spp.recent(params)\n```\n\n### ref\n\nThis path contains supporting lookup services for the /data and /product services\n\n#### ref.taxa\n\nreturns species in the ebird taxonomy\n\n```js\n    ebird.ref.taxa(params)\n```\n\n#### ref.hotspot.region\n\nprovides a list of eBird hotspots for a given region, optionally filtered to those with recent data\n\n```js\n    ebird.ref.hotspot.region(params)\n```\n\n#### ref.hotspot.geo\n\nprovides a list of nearby eBird hotspots, optionally filtered to those with recent data\n\n```js\n    ebird.ref.hotspot.geo(params)\n```\n\n#### ref.location\n\nreturns location-based look-up data\n```js\n    ebird.ref.location(params)\n```\n\n#### ref.region\n\nUndocumented ebird api.\n```js\nparams:\n    q: String to search on.  Required\n\nExample Response:\n    [\n        {\n            name: \"United States (US)\",\n            code: \"US\"\n        },\n        ...\n    ]\n```\n\nreturns location name and code.\n```js\n    ebird.ref.region(params)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojectbabbler%2Febird-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojectbabbler%2Febird-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojectbabbler%2Febird-js/lists"}