surfline
✓Verified·Scanned 2/18/2026
Get surf forecasts and current conditions from Surfline public endpoints (no login). Use to look up Surfline spot IDs, fetch forecasts/conditions for specific spots, and summarize multiple favorite spots.
from clawhub.ai·v33ce97b·11.2 KB·0 installs
Scanned from 0.1.0 at 33ce97b · Transparency log ↗
$ vett add clawhub.ai/miguelcarranza/surfline
Surfline (public, no login)
This skill uses Surfline public endpoints (no account, no cookies).
Quick start
- Find a spot id:
python3 scripts/surfline_search.py "Cardiff Reef"
python3 scripts/surfline_search.py "D Street"
- Get a report for a spot id (prints text + JSON by default):
python3 scripts/surfline_report.py <spotId>
# or only one format:
python3 scripts/surfline_report.py <spotId> --text
python3 scripts/surfline_report.py <spotId> --json
- Favorites summary (multiple spots) (prints text + JSON by default):
Create ~/.config/surfline/favorites.json (see references/favorites.json.example).
python3 scripts/surfline_favorites.py
Notes
- Keep requests gentle: don’t hammer endpoints. Scripts include basic caching.
- Spot IDs are stable; store them once.
- If Surfline changes endpoints/fields, update
scripts/surfline_client.py.