Public API

Free JSON API for the Glass Window Bridge live status. No API key required. Please cache responses and limit requests to once per minute.

GET /api/status.php

Returns the current bridge status with full detail.

GET https://glasswindowbridge.com/api/status.php
Example Response
{
  "site": "GlassWindowBridge.com",
  "bridge": "Glass Window Bridge, Eleuthera, Bahamas",
  "status": {
    "bridge_access": {
      "value": "open",
      "label": "Open",
      "icon": "✅"
    },
    "sea_conditions": {
      "value": "calm",
      "label": "Calm",
      "icon": "🌊"
    },
    "confidence": "high",
    "report_count": 5,
    "window_minutes": 720,
    "is_override": false,
    "last_report_at": "2026-04-10 14:32:00"
  },
  "disclaimer": "Community-reported. NOT an official source. Always verify locally.",
  "generated_at": "2026-04-10T14:45:00+00:00"
}

GET /api/status.php?format=simple

Minimal response for lightweight integrations.

GET https://glasswindowbridge.com/api/status.php?format=simple
Example Response
{
  "access": "open",
  "sea": "calm",
  "confidence": "high",
  "reports": 5,
  "updated": "2026-04-10 14:32:00",
  "override": false
}

Field Reference

FieldValuesDescription
access / bridge_access.valueopen, closed, mixed, unconfirmedBridge road access status
sea / sea_conditions.valuecalm, rough, mixed, unconfirmedAtlantic sea conditions
confidencehigh, medium, low, noneConfidence level based on report count and recency
reports / report_countintegerNumber of reports in current window
override / is_overridebooleanTrue if status was manually set by an admin
updated / last_report_atdatetime string or nullTimestamp of most recent report

Usage Notes

  • Rate limit: Please cache responses and poll no more than once per minute. The status updates based on community reports, not on a fixed schedule.
  • CORS: The API returns Access-Control-Allow-Origin: * — safe to call from browser-side JavaScript.
  • Cache header: Cache-Control: public, max-age=30 — responses may be cached for up to 30 seconds.
  • Attribution: If you display this data publicly, please link back to GlassWindowBridge.com as the source.
  • Disclaimer: Data is community-reported and unverified. Never rely on it as an official or emergency source.