# HarvestPulse Food Preservation Guide

> HarvestPulse Food Preservation 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-14).

Returns USDA-backed food preservation methods, shelf life estimates, safety ratings, yield estimates, and critical safety rules for a given produce and preservation method

## Facts

- Endpoint: GET https://harvestpulse.theaslangroupllc.com/api/harvest/food-preservation
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/harvestpulse-food-preservation-guide-43a66a2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iv2b9GsutzodI7GzC1TI-

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-food-preservation-guide-43a66a2b
```

Example prompt: What's the safest way to can tomatoes at home — give me the USDA-recommended method, how long they'll keep, whether it's beginner-safe, and any critical safety rules I need to follow?

## When to prefer this

Choose this endpoint when you need USDA-grounded, safety-rated guidance on home food preservation including shelf life, yield estimates, and critical safety rules for a specific produce and method combination. Prefer this over generic web search when you need structured, actionable data that an agent can parse and act on — particularly for safety-critical decisions like low-acid canning where botulism risk is real.

## Known failure modes

- Unsupported produce or method combination returns empty or null results
- Vague produce input (e.g. 'vegetables' instead of 'tomatoes') may return generic or no data
- Missing required query parameters (method or produce) may result in a 400 error
- Data may not reflect the latest USDA guideline updates if synthesis is not current

## How this service works

Food preservation guide — how to preserve produce: step-by-step home canning, fermenting, dehydrating, freezing, and pickling for any crop, with USDA food-safety guidelines, yields, and shelf life. For homesteading and local-food agents.

## Output

A JSON object containing the preservation method name, produce type, estimated shelf life with storage conditions, a beginner/intermediate/advanced safety rating, an estimated yield from a standard unit of produce, and a list of critical USDA-backed safety rules to follow during preservation.

## 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"
      },
      "method": {
       "type": "string"
      },
      "produce": {
       "type": "string"
      },
      "quantity": {
       "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": {
  "method": "canning",
  "produce": "tomatoes",
  "shelf_life": "12-18 months in a cool, dark pantry",
  "safety_rating": "beginner-safe",
  "yield_estimate": "7-8 quarts from a half-bushel",
  "critical_safety_rules": [
   "Use only tested USDA recipes — homemade recipes may not be safe",
   "Add lemon juice or citric acid to adjust pH — low-acid tomatoes risk botulism"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/harvestpulse-food-preservation-guide-43a66a2b/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)
