Skip to main content
GET
/
api
/
maritime
/
v1
/
list-navigational-warnings
ListNavigationalWarnings
curl --request GET \
  --url https://api.example.com/api/maritime/v1/list-navigational-warnings
{
  "warnings": [
    {
      "id": "<string>",
      "title": "<string>",
      "text": "<string>",
      "area": "<string>",
      "location": {
        "latitude": 0,
        "longitude": 0
      },
      "issuedAt": 123,
      "expiresAt": 123,
      "authority": "<string>"
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "totalCount": 123
  }
}

Query Parameters

page_size
integer<int32>

Maximum items per page (1-100).

cursor
string

Cursor for next page.

area
string

Optional area filter (e.g., "NAVAREA IV", "Persian Gulf").

Response

Successful response

ListNavigationalWarningsResponse contains navigational warnings matching the request.

warnings
object[]
pagination
object

PaginationResponse contains pagination metadata returned alongside list results.