# HarvestPulse Foraging Intelligence Guide

> HarvestPulse Foraging Intelligence Guide is a paid API for AI agents from harvestpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a region- and season-specific guide of wild edibles currently safe to forage, including edible plants, mushrooms, and berries, with safety ID guides and dangerous-lookalike warnings.

## Facts

- Endpoint: GET https://harvestpulse.theaslangroupllc.com/api/harvest/foraging-intel
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/harvestpulse-foraging-intelligence-guide-d28828f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s6w4fwj7UIw66Ohxu8YO3

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 harvestpulse-foraging-intelligence-guide-d28828f5
```

Example prompt: What wild edibles — plants, mushrooms, and berries — can I safely forage right now in the Pacific Northwest? Include lookalike warnings for anything dangerous.

## When to prefer this

Use this endpoint when an agent needs current, regionally accurate wild foraging intelligence with explicit safety warnings, particularly for homesteading, survival, or nature-based lifestyle agents that need species-level identification guidance rather than cultivated food sourcing.

## Known failure modes

- Unknown or unsupported region returns empty results or generic fallback
- Out-of-season queries may return limited or no current foraging recommendations
- Ambiguous region specification may yield incorrect regional data
- Missing region parameter triggers a 400 bad request error
- Rare or hyper-local species may not be included in the database

## How this service works

Foraging guide — what wild edibles to forage now: edible wild plants, mushrooms, and berries by region and season, with safety-first ID guides and dangerous-lookalike warnings. Worldwide. For homesteading and forager agents.

## Output

A curated, region- and season-specific list of currently forageable wild edibles (plants, mushrooms, and berries) with safety-first identification guides, distinguishing features, and explicit warnings about dangerous look-alike species worldwide.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string"
      },
      "type": {
       "type": "string"
      },
      "state": {
       "type": "string"
      },
      "season": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "region": "Pacific Northwest",
  "season": "fall",
  "safety_warning": "ALWAYS: never eat anything unless 100% certain of ID. When in doubt, throw it out.",
  "currently_available": [
   {
    "name": "Chanterelle",
    "peak_weeks": "September through November",
    "scientific_name": "Cantharellus cibarius",
    "identification_keys": [
     "False gills (forked ridges, not true gills)",
     "Egg-yolk yellow color",
     "Fruity apricot scent",
     "White interior flesh"
    ],
    "dangerous_lookalikes": [
     "Jack-o-lantern (Omphalotus olearius) — true gills, grows in clusters, causes GI distress"
    ],
    "beginner_safety_rating": "beginner-safe"
   }
  ]
 }
}
```

## More

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