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

> USCG District 7 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 7 Local Notices to Mariners as structured JSON, including navigation hazards, discrepancies, and waterway updates for the southeastern U.S. coast.

## Facts

- Endpoint: GET https://ticks.bnm.farm/mariners-d7
- 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-7-local-notices-to-mariners-bnm-data-shop-764f1201
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__ZxS-ODGxRtIfxLnmPL_g

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-7-local-notices-to-mariners-bnm-data-shop-764f1201
```

Example prompt: Can you pull the latest U.S. Coast Guard District 7 Local Notices to Mariners and show me any current navigation discrepancies or hazards, like damaged daybeacons or structural issues?

## When to prefer this

Choose this endpoint when you need structured, machine-readable JSON of USCG District 7 Local Notices to Mariners without manually parsing USCG PDF files or HTML pages. It is ideal for maritime safety applications, voyage planning tools, or automated monitoring systems focused on the southeastern U.S. coast (District 7 coverage including Florida, Georgia, and nearby waters). Prefer this over scraping NAVCEN directly when you need reliable JSON output with parsed records and source attribution.

## Known failure modes

- HTTP 402 returned if payment is not included (x402 payment required before data is served)
- Stale or missing data if USCG NAVCEN source has not published a new LNM for the current week
- Empty notices array if no discrepancies exist for the current period
- Network timeout if upstream NAVCEN site is temporarily unavailable
- Schema mismatch if USCG changes their PDF or HTML format

## How this service works

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

## Output

Returns a JSON object containing: current week identifier, source URL pointing to the USCG NAVCEN page, status indicator, an array of notice objects (each with descriptive text, week, section, waterway name, and source PDF URL), and a records array (each with a unique ID, URL, date, firm/waterway, and type). Also includes a product identifier, record count, and asOf date.

## 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=7+0&subdistrict=n",
  "status": "ok",
  "notices": [
   {
    "text": "Altamaha Sound Daybeacon 197 LLNR 36887 STRUCT DEST/TRUB FD",
    "week": "32-2026",
    "section": "Federal Discrepancies",
    "waterway": "Altamaha Sound",
    "sourceUrl": "https://www.navcen.uscg.gov/sites/default/files/pdf/lnms/lnm07322026.pdf"
   }
  ],
  "product": "uscg-d7-lnm",
  "records": [
   {
    "id": "32-2026:Federal Discrepancies:36887",
    "url": "https://www.navcen.uscg.gov/sites/default/files/pdf/lnms/lnm07322026.pdf",
    "date": "2026-08-12",
    "firm": "Altamaha Sound",
    "type": "mariners-d7"
   }
  ],
  "recordCount": 1
 }
}
```

## More

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