# Vibe Springs Location Report

> Vibe Springs Location Report is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a comprehensive environmental and conditions report for a given city or region, aggregating weather forecast, air quality, marine, solar, flood risk, and earthquake data in a single call.

## Facts

- Endpoint: GET https://vibesprings.net/api/workflow/location-report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-location-report-279d299f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nBnn2UO6vLYWbgDS2pnRN

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 vibe-springs-location-report-279d299f
```

Example prompt: Can you pull a full location report for London — weather, air quality, solar, marine, flood risk, and earthquakes — covering the next 5 days?

## When to prefer this

Choose this endpoint when you need a one-shot comprehensive environmental snapshot of a location combining multiple data dimensions (weather, air quality, flood, marine, solar, seismic) rather than making separate individual API calls for each. Ideal for travel briefings, site assessments, or any scenario where a holistic location conditions summary is needed without managing multiple endpoints or API keys.

## Known failure modes

- Unknown or misspelled location name returns an error or empty data
- forecast_days outside 1-7 range may return a validation error
- x402 micropayment failure results in a 402 Payment Required response
- Network timeout if upstream data sources are slow
- Partial data if some sub-services (e.g. marine) have no coverage for the location (e.g. landlocked region)

## How this service works

Location Intelligence Bundle — combines weather forecast, air quality, flood risk, earthquakes, marine weather, and solar data into a single API call. 33% cheaper than 6 individual calls.

## Output

A JSON object containing aggregated environmental data for the specified location: a weather forecast array, air quality object, solar data object, marine conditions array, flood risk array, and earthquakes array, all keyed under the resolved location name string.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "location"
     ],
     "properties": {
      "location": {
       "type": "string",
       "description": "City or region name"
      },
      "forecast_days": {
       "type": "number",
       "description": "Days of forecast data (1-7, default 3)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "solar": {},
  "marine": [],
  "location": "London, England, UK",
  "flood_risk": [],
  "air_quality": {},
  "earthquakes": [],
  "weather_forecast": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-location-report-279d299f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
