Real-time AIS vessel tracking — live now across the Pacific Northwest & Hawaii, with Alaska coverage expanding. 400-day archive, port intelligence, and dark-ship detection via clean REST or live SSE. See live coverage →
One endpoint, predictable JSON, sensible defaults. The Python SDK wraps every endpoint with typed return values. Import the Postman collection and your team is making authenticated calls in under five minutes.
from ais_intelligence import AISClient client = AISClient("ais_your_key") # Live vessels in Dutch Harbor right now vessels = client.live_vessels(port="dutch_harbor") for v in vessels: print(v["ship_name"], v["sog"], "kn") # F/V SEA ROVER 8.2 kn # M/V TAZLINA 12.0 kn # Alert when F/V Resolute enters Kodiak client.create_alert( mmsi=338234567, port="kodiak", notify_email="[email protected]" ) # Pull 30-day track for incident review track = client.export_history( mmsi=338234567, start="2026-05-01", end="2026-05-30" )
No credit card for the 7-day trial. API key delivered instantly by email. Full access to all 17 port coverage areas from day one.