# BioPulse Birding Intelligence API

> BioPulse Birding Intelligence API is a paid API for AI agents from biopulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns recent eBird observations, bird rarities, and birding hotspots for a given location to support birding and eco-tourism agents.

## Facts

- Endpoint: GET https://biopulse.theaslangroupllc.com/api/bio/birding
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/biopulse-birding-intelligence-api-b6d32612
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hlNtEs3SavG7cZzUBtDK_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability biopulse-birding-intelligence-api-b6d32612
```

Example prompt: What rare birds and recent eBird sightings are there within 25 miles of Monterey, California, and which hotspots should I visit for the best birding?

## When to prefer this

Choose this endpoint when an agent needs real-time or recent bird observation data, rarity alerts, or hotspot discovery for a specific geographic location — particularly for birding trip planning, eco-tourism recommendations, or citizen-science queries. Prefer this over general wildlife sighting endpoints when the user's focus is specifically on birds and avian species.

## Known failure modes

- Location not recognized or outside supported geographic coverage — returns 404 or empty results
- No recent observations available for the specified area or time window — returns empty observation list
- Invalid or missing location parameter — returns 400 bad request
- Rate limit exceeded or payment not processed — returns 402 or 429 error
- eBird upstream data unavailable — returns 503 service unavailable

## How this service works

Birding intelligence for birding and eco-tourism agents. Returns recent eBird observations, rarities, and hotspots for any location.

## Output

Returns a structured list of recent bird observations (species, count, date, observer), rarity alerts for unusual or rare species detected in the area, and ranked birding hotspots with location details — all sourced from eBird citizen-science data for the requested location and radius.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "lat"
  },
  "lng": {
   "type": "number",
   "description": "lng"
  },
  "dist": {
   "type": "integer",
   "description": "Search radius in km (max 50, default 25)"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "location": {
   "type": "string",
   "description": "location"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/biopulse-birding-intelligence-api-b6d32612/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from biopulse.theaslangroupllc.com](https://www.zero.xyz/host/biopulse.theaslangroupllc.com/llms.txt)
