# USCG District 8 Local Notices to Mariners (BNM Data Shop)

> USCG District 8 Local Notices to Mariners (BNM Data Shop) 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 8 Local Notices to Mariners (LNM) as structured JSON, including navigational discrepancies and waterway alerts.

## Facts

- Endpoint: GET https://ticks.bnm.farm/mariners-d8
- 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-8-local-notices-to-mariners-bnm-data-shop-1a752e1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y-aCsKCKBqtUmR2IT35pH

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-8-local-notices-to-mariners-bnm-data-shop-1a752e1b
```

Example prompt: Pull the latest USCG District 8 Local Notices to Mariners so I can see any current navigational discrepancies or destroyed aids affecting waterways in that region this week.

## When to prefer this

Use this endpoint when you need machine-readable, structured access to USCG District 8 Local Notices to Mariners without scraping NAVCEN PDFs yourself. Ideal for maritime safety applications, vessel routing agents, fleet monitoring systems, or any workflow that needs weekly Gulf Coast navigational discrepancy data delivered as clean JSON at low cost per call.

## Known failure modes

- HTTP 402 if payment is not attached or insufficient — endpoint requires $0.05 USDC per call
- Empty notices array if no discrepancies were published for the current week
- Source data unavailability if NAVCEN has not yet published the current week's LNM PDF
- Network timeout if the upstream NAVCEN site is slow or unavailable

## How this service works

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

## Output

A JSON object containing the current week identifier, publication date, source URL, and an array of notices — each with the notice text, waterway name, section type (e.g. Federal Discrepancies), and a link to the source PDF. Also includes normalized records with unique IDs, dates, and record type for downstream processing.

## 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-19",
  "week": "33-2026",
  "source": "https://www.navcen.uscg.gov/local-notices-to-mariners?district=8+0&subdistrict=g",
  "status": "ok",
  "notices": [
   {
    "text": "Acadiana Navigation Channel Light 6 LLNR 20305 STRUCT DEST/TRLB FD",
    "week": "33-2026",
    "section": "Federal Discrepancies",
    "waterway": "Acadiana Navigation Channel",
    "sourceUrl": "https://www.navcen.uscg.gov/sites/default/files/pdf/lnms/lnm0833g2026.pdf"
   }
  ],
  "product": "uscg-d8-lnm",
  "records": [
   {
    "id": "33-2026:Federal Discrepancies:20305",
    "url": "https://www.navcen.uscg.gov/sites/default/files/pdf/lnms/lnm0833g2026.pdf",
    "date": "2026-08-19",
    "firm": "Acadiana Navigation Channel",
    "type": "mariners-d8"
   }
  ],
  "recordCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uscg-district-8-local-notices-to-mariners-bnm-data-shop-1a752e1b/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)
