# agent402.tools Location Intel Workflow

> agent402.tools Location Intel Workflow is a paid API for AI agents from agent402.tools, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Runs a bundled location intelligence workflow: resolves an address or place name to coordinates, canonical postal address, nearby points of interest, and live weather forecast in one call

## Facts

- Endpoint: POST https://agent402.tools/api/skill/location-intel
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-location-intel-workflow-124a684b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xOOcMmgUsoxn7d5ZSUbgE

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 agent402-tools-location-intel-workflow-124a684b -d '<json body>'
```

Example prompt: Can you pull together a full location brief for 221B Baker Street, London — I need the exact coordinates, the proper postal address, what's within walking distance, and the current weather forecast all in one shot?

## When to prefer this

Use this endpoint when you need a one-stop location intelligence bundle — geocoding, address normalization, nearby POI discovery, and live weather — rather than chaining multiple separate API calls. Ideal for building situational briefs, travel summaries, or location-aware context with a single request and a single $0.10 payment.

## Known failure modes

- Ambiguous or unresolvable place name returns an error or low-confidence result
- Address outside supported geocoding coverage returns null coordinates
- Downstream weather service unavailable causes partial result or failure
- Malformed or empty address string returns a validation error
- Rate-limiting or payment failure (x402) results in 402 Payment Required

## How this service works

Bundled execution of the Location intel workflow - Point at an address (or even a rough place name) and assemble the situational brief: precise coordinates, the canonical postal address, what's within walking distance, the live weather forecast, active NWS hazard alerts, and recent seismic activity. The deterministic 'what should I know about this place right now?' workup.

## Output

A consolidated situational brief containing: precise lat/lng coordinates, the canonical/standardized postal address, a list of nearby walkable points of interest, and a live weather forecast for the given location — all returned in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Address or place name (e.g. '1600 Pennsylvania Ave NW Washington DC' or 'Joshua Tree National Park')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "address": "1600 Pennsylvania Ave NW Washington DC"
  },
  "pack": "location-intel",
  "steps": [
   {
    "ok": true,
    "slug": "geocode",
    "result": {}
   },
   {
    "ok": true,
    "slug": "reverse-geocode",
    "result": {}
   },
   {
    "ok": true,
    "slug": "place-search",
    "result": {}
   },
   {
    "ok": true,
    "slug": "weather-forecast",
    "result": {}
   },
   {
    "ok": true,
    "slug": "weather-alerts",
    "result": {}
   },
   {
    "ok": true,
    "slug": "earthquakes",
    "result": {}
   }
  ],
  "summary": "6/6 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-location-intel-workflow-124a684b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
