List the authenticated user's vessel history
curl --request GET \
--url https://api.digitalseaservice.com/v1/me/vessels \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.digitalseaservice.com/v1/me/vessels"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.digitalseaservice.com/v1/me/vessels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.digitalseaservice.com/v1/me/vessels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.digitalseaservice.com/v1/me/vessels"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.digitalseaservice.com/v1/me/vessels")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.digitalseaservice.com/v1/me/vessels")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"next_cursor": "eyJsYXN0X2lkIjoiMDFIVjlYS...",
"record_updated_at": "2026-05-22T14:21:00Z",
"user_id": "65a1f0e2c3b4d5e6f7a8b9c0",
"vessels": [
{
"days": 99,
"id": "69961ffbbd7419b471faab60",
"imo": "1012725",
"name": "M/V Endeavour",
"nautical_miles": 4280,
"period_end": "2025-04-20T00:00:00Z",
"period_start": "2025-01-12T00:00:00Z",
"role": "Chief Officer"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"errors": [
{}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}vessels
List the authenticated user's vessel history
GET
/
v1
/
me
/
vessels
List the authenticated user's vessel history
curl --request GET \
--url https://api.digitalseaservice.com/v1/me/vessels \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.digitalseaservice.com/v1/me/vessels"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.digitalseaservice.com/v1/me/vessels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.digitalseaservice.com/v1/me/vessels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.digitalseaservice.com/v1/me/vessels"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.digitalseaservice.com/v1/me/vessels")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.digitalseaservice.com/v1/me/vessels")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"next_cursor": "eyJsYXN0X2lkIjoiMDFIVjlYS...",
"record_updated_at": "2026-05-22T14:21:00Z",
"user_id": "65a1f0e2c3b4d5e6f7a8b9c0",
"vessels": [
{
"days": 99,
"id": "69961ffbbd7419b471faab60",
"imo": "1012725",
"name": "M/V Endeavour",
"nautical_miles": 4280,
"period_end": "2025-04-20T00:00:00Z",
"period_start": "2025-01-12T00:00:00Z",
"role": "Chief Officer"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"errors": [
{}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Authorizations
oauth2bearerAuth
OAuth 2.0 Authorization Code flow with PKCE. See the integration guide at docs.digitalseaservice.com for the full step-by-step.
Query Parameters
Opaque cursor from a prior response.
Page size; max 200.
Required range:
1 <= x <= 200Response
Successful Response
Page of vessel periods for the authenticated user.
Show child attributes
Show child attributes
Most-recently-updated crew-list record for the user. Same value across every page of a stable scan — drives the page-stable ETag.
Opaque cursor for the next page. null when the page is the last one.
⌘I

