
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@pondlog/source-inaturalist
Advanced tools
iNaturalist API client library: typed, Zod-validated, rate-limited. Returns Result<T> instead of throwing.
iNaturalist API client. Typed,
Zod-validated, rate-limited, returns Result<T> instead of throwing.
Part of pondlog.
No API key required. iNaturalist reads are open. The library handles the 100 req/min rate limit internally and backs off on 429.
npm install @pondlog/source-inaturalist @pondlog/core
| Function | Endpoint | Returns |
|---|---|---|
searchObservations(params) | GET /observations | Result<Observation[]> |
getObservation(id) | GET /observations/{id} | Result<ObservationDetail> |
getSpeciesCounts(params) | GET /observations/species_counts | Result<SpeciesCount[]> |
getNearbyObservations(coords, radius?, days?) | GET /observations (geo) | Result<Observation[]> |
searchTaxa(query) | GET /taxa | Result<Taxon[]> |
getTaxon(id) | GET /taxa/{id} | Result<TaxonDetail> |
getIconicTaxaSummary(coords, radius?, days?) | GET /observations/species_counts (grouped) | Result<IconicTaxaSummary> |
searchPlaces(query) | GET /places/autocomplete | Result<Place[]> |
getObservers(coords, radius?, days?) | GET /observations/observers | Result<Observer[]> |
Defaults: radius = 25 km, days = 7.
import { getNearbyObservations } from "@pondlog/source-inaturalist";
const result = await getNearbyObservations(
{ lat: 48.118, lng: -123.4307 }, // Port Angeles, WA
25, // km
7, // days
);
if (!result.ok) {
console.error(result.error.message);
process.exit(1);
}
for (const obs of result.data) {
console.log(obs.commonName, obs.taxonName, obs.observedAt);
}
pondlog wraps
these functions in a terminal interface.@pondlog/mcp-inaturalist
exposes them as MCP tools for AI agents.MIT.
FAQs
iNaturalist API client library: typed, Zod-validated, rate-limited. Returns Result<T> instead of throwing.
We found that @pondlog/source-inaturalist demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.