# USCG District 11 Local Notices to Mariners

> USCG District 11 Local Notices to Mariners is a paid API for AI agents from ticks.bnm.farm, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the latest U.S. Coast Guard District 11 Local Notices to Mariners (LNM) as structured JSON, including navigation hazards, light discrepancies, and waterway notices for the Pacific Coast district.

## Facts

- Endpoint: GET https://ticks.bnm.farm/mariners-d11
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uscg-district-11-local-notices-to-mariners-090d09a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TPBcZxXIsczNEjR9SQZSx

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 uscg-district-11-local-notices-to-mariners-090d09a0
```

Example prompt: What are the latest USCG District 11 Local Notices to Mariners this week — specifically any navigation discrepancies or light outages on Pacific Coast waterways like Berkeley Marina?

## When to prefer this

Choose this endpoint when you need structured, machine-readable JSON of USCG District 11 Local Notices to Mariners without scraping NAVCEN PDFs yourself. It is ideal for maritime safety applications, voyage planning tools, or automated monitoring systems covering Pacific Coast / San Francisco Bay Area waterways. Prefer this over raw PDF parsing or manual NAVCEN checks when freshness (current week) and structured output are required.

## Known failure modes

- HTTP 402 if payment header is missing or invalid — endpoint requires x402 micropayment of $0.05 USDC
- No notices returned if there are no discrepancies for the current week
- Source NAVCEN data may be temporarily unavailable, resulting in stale or empty response
- Malformed payment credentials may cause authentication failure before data is returned

## How this service works

Official public data as JSON. Unpaid paid routes return HTTP 402.

## Output

A JSON object containing: ok status, publication date (asOf), week identifier (e.g. '32-2026'), source URL pointing to NAVCEN, list of notices (each with text, week, section, waterway, and source PDF URL), product identifier ('uscg-d11-lnm'), structured records (each with id, url, date, firm/waterway, and type), and a total record count.

## 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"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "schema": {
     "type": "object"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "asOf": "2026-08-12",
  "week": "32-2026",
  "source": "https://www.navcen.uscg.gov/local-notices-to-mariners?district=11+0&subdistrict=n",
  "status": "ok",
  "notices": [
   {
    "text": "Berkeley Marina Channel Light 2 LLNR 5430 LT EXT FD",
    "week": "32-2026",
    "section": "Federal Discrepancies",
    "waterway": "Berkeley",
    "sourceUrl": "https://www.navcen.uscg.gov/sites/default/files/pdf/lnms/lnm11322026.pdf"
   }
  ],
  "product": "uscg-d11-lnm",
  "records": [
   {
    "id": "32-2026:Federal Discrepancies:5430",
    "url": "https://www.navcen.uscg.gov/sites/default/files/pdf/lnms/lnm11322026.pdf",
    "date": "2026-08-12",
    "firm": "Berkeley",
    "type": "mariners-d11"
   }
  ],
  "recordCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uscg-district-11-local-notices-to-mariners-090d09a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ticks.bnm.farm](https://www.zero.xyz/host/ticks.bnm.farm/llms.txt)
