# AgentBodega Outdoor Recreation Availability

> AgentBodega Outdoor Recreation Availability is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Checks campsite and outdoor recreation availability for a given resource and date range, returning per-site availability status and metadata.

## Facts

- Endpoint: POST https://agentbodega.store/api/public-data/outdoor-recreation-availability
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-outdoor-recreation-availability-793f6a1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_05XlCVjv-a8OkbzprITgz

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 agentbodega-outdoor-recreation-availability-793f6a1d -d '<json body>'
```

Example prompt: Can you check if there are any available campsites at Upper Pines Campground (entity ID 232447) in California from June 15 to June 19, 2026 — tent sites that allow pets, for up to 6 people?

## When to prefer this

Use this endpoint when an agent needs to programmatically check campsite or outdoor recreation availability by resource name and date range, especially when real-time per-site availability status, pet policies, and campsite type details are needed. Prefer over general web search when structured, machine-readable availability data per campsite is required. Well-suited for agents automating camping trip planning or monitoring reservation windows.

## Known failure modes

- Missing required fields (resource, startDate, endDate) returns a validation error
- Unknown entityId or resource name may return empty sites array or a resolution error
- Date range too wide or too narrow may return no results
- Upstream recreation data source unavailability may cause timeout or 5xx error
- Invalid date format may cause a parsing error

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

Returns a JSON object with a list of campsites including their loop, site number, campsite ID, per-day availability status over the requested date range, pet policy, campsite type, and max occupancy. Also includes a resolved entity block (name, state, entityId, entityType) and a date range summary (checkin, checkout, number of nights).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "resource",
       "type": "string",
       "required": true
      },
      {
       "name": "entityId",
       "type": "string",
       "required": false
      },
      {
       "name": "entityType",
       "type": "string",
       "required": false
      },
      {
       "name": "state",
       "type": "string",
       "required": false
      },
      {
       "name": "startDate",
       "type": "string",
       "required": true
      },
      {
       "name": "endDate",
       "type": "string",
       "required": true
      },
      {
       "name": "isLottery",
       "type": "boolean",
       "required": false
      },
      {
       "name": "filters",
       "type": "object",
       "required": false
      },
      {
       "name": "limit",
       "type": "integer",
       "required": false
      },
      {
       "name": "includeMetadata",
       "type": "boolean",
       "required": false
      },
      {
       "name": "proxiesSx",
       "type": "boolean | object",
       "required": false
      }
     ],
     "required": [
      "resource",
      "startDate",
      "endDate"
     ],
     "fieldCount": 11,
     "contentType": "application/json",
     "optionalPreview": [
      "entityId",
      "entityType",
      "state",
      "isLottery",
      "filters",
      "limit",
      "includeMetadata",
      "proxiesSx"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "campground",
  "sites": [
   {
    "loop": "Upper Pines",
    "campsite_id": "98",
    "site_number": "040",
    "availability": {
     "2026-06-15": "Available",
     "2026-06-16": "Available",
     "2026-06-17": "Reserved",
     "2026-06-18": "Available"
    },
    "pets_allowed": "Domestic",
    "campsite_type": "TENT ONLY NONELECTRIC",
    "max_num_people": 6
   }
  ],
  "resolved": {
   "name": "Upper Pines Campground",
   "state": "CA",
   "entityId": "232447",
   "entityType": "campground"
  },
  "dateRange": {
   "nights": 4,
   "checkin": "2026-06-15",
   "checkout": "2026-06-19"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-outdoor-recreation-availability-793f6a1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
