Accessing Fleet Data
eStela provides a RESTful API that allows you to access and manage your fleet programmatically. This is useful for integrating eStela with your registration systems, scoring software, or custom race management tools.
Fleet Endpoint
The fleet management endpoint is available at:
https://estela.co/api/v1.0/boats
This endpoint supports the following HTTP methods:
GET – Retrieve boat data
POST – Add a new boat
PUT – Update existing boat information
DELETE – Remove a boat from your fleet
Authentication
To authenticate your requests, include your API token in one of two ways:
As a Bearer token in the Authorization header
As a query parameter: ?api_token=YOUR_TOKEN
You can find and manage your API token at:
https://estela.co/edit/integrations
Tokens are generated once. If you lose access or need to regenerate your token, contact support.
Available Boat Fields
When creating or updating a boat via the API, you can set the following fields:
name – Boat name (required)
model – Optional boat model
class – Used for fleet grouping
number – Unique sail number ID
mmsi – For vessels using AIS tracking
color – Visualization color (hex or named value)
Last updated