Fugro OARS API Documentation

You are seeing this HTML page because the GET method to the root resource of this API returns this content.

The OARS API contains the following resources:

By making a GET request to either, you can retrieve a list of Fugro vessels in this region.

You may limit the list of vessels with a query string such as ?names=<vessel-1>,<vessel-2>,..., where all vessel names should be lower-case and any space in the vessel name should be replaced with a '-' character.

As an example:

Request

GET https://api.apac.oarsfugro.com/vessels?name=ahvblue,lady-caroline
HEADER: authorizationToken: Bearer JSLDJ4sdlk6jldsl...

Response

{
    "data": [
        {
            "name": "AHVBlue",
            "latitude": -21.68272385,
            "longitude": 113.94586231667,
            "heading": 2.1,
            "age": 25,
            "spatial": "https://spatial.apac.oarsfugro.com/ahvblue/spatial/osm/{level}/{col}/{row}.png",
            "coverage": "https://spatial.apac.oarsfugro.com/ahvblue/coverage/osm/{level}/{col}/{row}.png"
        },
        {
            "name": "Lady Caroline",
            "latitude": -31.976325166667,
            "longitude": 115.67674045,
            "heading": 189,
            "age": 95801,
            "spatial": "https://spatial.apac.oarsfugro.com/lady-caroline/spatial/osm/{level}/{col}/{row}.png",
            "coverage": "https://spatial.apac.oarsfugro.com/lady-caroline/coverage/osm/{level}/{col}/{row}.png"
        }
    ]
}
	

heading is reported in degrees, age is reported in seconds since last ping from the vessel, spatial and coverage are the URLs where the spatial and coverage map tiles (OSM) can be retrieved.

You can use a REST client such as Postman to test the methods in this API.