Skip to main content

vesselapi-python

[!WARNING] This version is no longer maintained. Several endpoints wrapped by 1.x were retired from the VesselAPI service on 10 August 2026 and now return HTTP 410. Please upgrade:

pip install 'vessel-api-python>=2'

2.x removes the retired surface, requires the parameters the API requires, and adds unified search, repeatable filters and satellite position fallback. See the CHANGELOG for migration notes.

CI PyPI Python License: MIT

Python client for the Vessel Tracking API — maritime vessel tracking, port events, emissions, and navigation data.

Resources: Documentation | API Explorer | Dashboard | Contact Support

Install

pip install vessel-api-python

Requires Python 3.9+.

Quick Start

from vessel_api_python import VesselClient

client = VesselClient(api_key="your-api-key")

# Search for a vessel by name.
result = client.search.vessels(filter_name="Ever Given")
for v in result.vessels or []:
    print(f"{v.name} (IMO {v.imo})")

# Get a port by UN/LOCODE.
port = client.ports.get("NLRTM")
print(port.port.name)

# Auto-paginate through port events.
for event in client.port_events.list_all(pagination_limit=10):
    print(f"{event.event} at {event.timestamp}")

Async

import asyncio
from vessel_api_python import AsyncVesselClient

async def main():
    async with AsyncVesselClient(api_key="your-api-key") as client:
        result = await client.search.vessels(filter_name="Ever Given")
        async for event in client.port_events.list_all(pagination_limit=10):
            print(f"{event.event} at {event.timestamp}")

asyncio.run(main())

Available Services

Service Methods Description
vessels get, position, casualties, classification, emissions, eta, inspections, inspection_detail, ownership, positions Vessel details, positions, and records
ports get Port lookup by UN/LOCODE
port_events list, by_port, by_ports, by_vessel, last_by_vessel, by_vessels Vessel arrival/departure events
emissions list EU MRV emissions data
search vessels, ports, dgps, light_aids, modus, radio_beacons Full-text search across entity types
location vessels_bounding_box, vessels_radius, ports_bounding_box, ports_radius, dgps_bounding_box, dgps_radius, light_aids_bounding_box, light_aids_radius, modus_bounding_box, modus_radius, radio_beacons_bounding_box, radio_beacons_radius Geo queries by bounding box or radius
navtex list NAVTEX maritime safety messages

37 methods total.

Vessel Lookup & Location

# Get vessel details by IMO number (defaults to IMO; pass filter_id_type="mmsi" for MMSI).
vessel = client.vessels.get("9811000")
print(f"{vessel.vessel.name} ({vessel.vessel.vessel_type})")

# Get the vessel's latest AIS position.
pos = client.vessels.position("9811000")
print(f"Position: {pos.vessel_position.latitude}, {pos.vessel_position.longitude}")

# Find all vessels within 10 km of Rotterdam.
nearby = client.location.vessels_radius(latitude=51.9225, longitude=4.47917, radius=10000)
for v in nearby.vessels or []:
    print(f"{v.vessel_name} at {v.latitude}, {v.longitude}")

Error Handling

All methods raise specific exception types on non-2xx responses:

from vessel_api_python import VesselAPIError

try:
    client.ports.get("ZZZZZ")
except VesselAPIError as err:
    if err.is_not_found:
        print("Port not found")
    elif err.is_rate_limited:
        print("Rate limited — back off")
    elif err.is_auth_error:
        print("Check API key")
    print(err.status_code, err.message)

Auto-Pagination

Every list endpoint has an all_* / list_all variant returning an iterator:

# Sync
for vessel in client.search.all_vessels(filter_vessel_type="Tanker"):
    print(vessel.name)

# Async
async for vessel in client.search.all_vessels(filter_vessel_type="Tanker"):
    print(vessel.name)

# Collect a bounded set at once
vessels = client.search.all_vessels(filter_vessel_type="Tanker", pagination_limit=50).collect()

Configuration

client = VesselClient(
    api_key="your-api-key",
    base_url="https://custom-endpoint.example.com/v1",
    timeout=60.0,
    max_retries=5,  # default: 3
    user_agent="my-app/1.0",
)

Retries use exponential backoff with jitter on 429 and 5xx responses. The Retry-After header is respected.

Documentation

Contributing & Support

Found a bug, have a feature request, or need help? You're welcome to open an issue. For API-level bugs and feature requests, please use the main VesselAPI repository.

For security vulnerabilities, do not open a public issue — email security@vesselapi.com instead. See SECURITY.md.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vessel_api_python-1.3.1.tar.gz (45.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vessel_api_python-1.3.1-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file vessel_api_python-1.3.1.tar.gz.

File metadata

  • Download URL: vessel_api_python-1.3.1.tar.gz
  • Upload date:
  • Size: 45.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vessel_api_python-1.3.1.tar.gz
Algorithm Hash digest
SHA256 755c3aceaad95a964babdf3386a3a8066fa7a2712873300768098487f871265f
MD5 d4c499780a5554a8f72bc4c219dbef97
BLAKE2b-256 fb6fb81979e45c820b1bcf266930a1bcb3fb46b54b8b805ae77e0f4d882a9f33

See more details on using hashes here.

Provenance

The following attestation bundles were made for vessel_api_python-1.3.1.tar.gz:

Publisher: publish.yml on vessel-api/vesselapi-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vessel_api_python-1.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for vessel_api_python-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2e3ed4d285e27e105afd75db624e9858fa5e9763426cd4931a0565f84c9c09a9
MD5 a66fc14d43ba53c3db8b8dbc74be07b3
BLAKE2b-256 187cf1d923f3e51b9451b22b6ca3ac4fd3345d6f4d844e3b6ccd5afc1b1815d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vessel_api_python-1.3.1-py3-none-any.whl:

Publisher: publish.yml on vessel-api/vesselapi-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.0.0

2 files

This release

1.3.1 This release

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page