AVURNAVs API Reference

Tells about in-force navigational warnings in metropolitan France

API Endpoint
https://avurnav.antoine-augusti.fr/
Response Content-Types: application/json
Schemes: https
Version: 0.1

Paths

GET /avurnavs/regions/{region}

Returns in-force navigational warnings for the region under the supervision of a specific Préfet Maritime. Navigational warnings are called AVURNAVs ("avis urgents aux navigateurs") in French. This endpoint is limited at 60 HTTP requests / minute / IP address.

region
in path
string atlantique, manche, méditerranée

The Préfet Maritime region

200 OK

A list of in-force navigational warnings for this region

type
Response Content-Types: application/json
Response Example (200 OK)
[
  {
    "number": "1115/18",
    "title": "ANTIFER - PHARE DE GATEVILLE",
    "content": "LES NAVIGATEURS SONT INFORMES DE LA MISE EN PLACE CE JOUR A TITRE D'ESSAIS D'UN SYSTEME AIS SUR LE PHARE DE GATTEVILLE (MMSI 992271217). (LFLA 30400). POSITION (WGS84): 49-41,8N 001-16,0W",
    "latitude": 49.222,
    "longitude": -1.2654,
    "url": "https://www.premar-manche.gouv.fr/avis-urgents-aux-navigateurs/antifer-phare-gateville-1115.html",
    "valid_from": "2018-12-01",
    "valid_until": "2018-12-31",
    "premar_region": "Atlantique"
  }
]
Response Headers (200 OK)
X-RateLimit-Limit

The number of HTTP requests authorized in this current period

integer
X-RateLimit-Remaining

The number of HTTP requests remaining in this current period

integer
X-RateLimit-Reset

UNIX timestamp telling when the current period will end

integer

Schema Definitions

AVURNAV:

number: string
title: string
content: string
latitude: number (float)
longitude: number (float)
url: string (url)
valid_from: string (date)
valid_until: string (date)
premar_region: string
Example
{
  "number": "1115/18",
  "title": "ANTIFER - PHARE DE GATEVILLE",
  "content": "LES NAVIGATEURS SONT INFORMES DE LA MISE EN PLACE CE JOUR A TITRE D'ESSAIS D'UN SYSTEME AIS SUR LE PHARE DE GATTEVILLE (MMSI 992271217). (LFLA 30400). POSITION (WGS84): 49-41,8N 001-16,0W",
  "latitude": 49.222,
  "longitude": -1.2654,
  "url": "https://www.premar-manche.gouv.fr/avis-urgents-aux-navigateurs/antifer-phare-gateville-1115.html",
  "valid_from": "2018-12-01",
  "valid_until": "2018-12-31",
  "premar_region": "Atlantique"
}