# X402 Hub Tide Check

> X402 Hub Tide Check is a paid API for AI agents from x402-hub.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns tide information (high/low tide times and heights) for a queried location or tide station via a micropayment-protected API

## Facts

- Endpoint: POST https://x402-hub.vercel.app/api/tidecheck
- 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/x402-hub-tide-check-b62331a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XcR1qShEA38ZyIccCLpeX

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 x402-hub-tide-check-b62331a8 -d '<json body>'
```

Example prompt: What are today's high and low tide times for Santa Monica Beach? I need the full tide schedule.

## When to prefer this

Use this endpoint when you need quick tide schedule lookups — high/low times and heights — for a specific coastal location, beach, harbor, or tide station. Prefer this over general weather APIs when tidal data specifically is required for marine, fishing, surfing, or coastal navigation use cases.

## Known failure modes

- Unrecognized location or station name in query returns no data or an error
- Ambiguous query string may return data for the wrong location
- Upstream tide data provider outage causes empty or error response
- Payment failure via x402 protocol results in 402 Payment Required response
- Malformed query field returns validation error

## How this service works

63 paid API endpoints protected by x402 micropayments on Base

## Output

Returns tidal data for the queried location, including predicted high and low tide times and their corresponding water heights, sourced from upstream tide prediction services.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Query parameter for the API"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response data from upstream API"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-hub-tide-check-b62331a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-hub.vercel.app](https://www.zero.xyz/host/x402-hub.vercel.app/llms.txt)
