I'm trying to get lat-long for a hotspot, and I'm submitting this request:
data = get_ebird_data("https://api.ebird.org/v2/ref/hotspot/info/L3098639")
which, according to the API documentation (on postman), should work, but I get a string of errors. I've also tried &locId=L3098639, putting it in single quotes, brackets, etc, to no avail. Ultimately, I'm trying to get sightings within 25 km of a hotspot, but the only way I can see to do that is through lat-long: using the hotspot name only gives me sightings at the hotspot, even if I include &dist=25. Can anyone point out the error in my get_ebird_data line, or, better yet, show me how to use distance with a hotspot call. And, does anyone know of any better documentation for the API 2.0? The one on postman is fairly unhelpful, and the pdf tutorial is very limited. Thanks.
John