The Marinas.com API supports both authenticated and unauthenticated requests. Requests are authenticated requests with an API Key, which is put into the access_token
query parameter of any request. Or as an Authorization header Authorization: Bearer access_token
Get yours at the developers homepage.
curl -XGET https://api.marinas.com/v1/points/95cz
The Marinas.com API returns preformed links on point of interest data to help assist you in database traversal and Attribution requirements. The web_url
, api_url
, and icon_url
properties will always return a working link for you to embed in your application.
{
"id": "95cz",
"resource": "point",
"name": "Baltimore Yacht Basin",
"kind": "marina",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.2597909161243,
"lon": -76.6135644707624,
"what3words": "fakes.dined.pepper"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/be9819b5d260e6d3f48324e484e88b96cb84ef3a6ccd64bfc85677af2f80bc05.jpg",
"small_url": "https://img.marinas.com/v2/782f613e39a3e93e96618e976722bfab712e1422a7b2313e7fa3cd5f85664eea.jpg",
"medium_url": "https://img.marinas.com/v2/6471dbf0545189b9198602ccbb570744b9d5ea39223d7e0e8ccf28202d5d4389.jpg",
"banner_url": "https://img.marinas.com/v2/4d746d47a13b146a17c0e4a01df956ee9281e1bfdf8f2449f656e1c8e90642dc.jpg",
"full_url": "https://img.marinas.com/v2/d7c6d4bdb41d74accd19142ab8f013b11cefc501d32b1f3714207a68b84274e7.jpg"
}
],
"total_count": 8
},
"web_url": "https://marinas.com/view/marina/95cz_Baltimore_Yacht_Basin_Baltimore_MD_United_States",
"api_url": "https://api.marinas.com/v1/marinas/95cz",
"icon_url": "https://marinas.com/assets/map/marker_marina-61b3ca5ea8e7fab4eef2d25df94457f060498ca1a72e3981715f46d2ab347db4.svg",
"fuel": {
"has_diesel": false,
"has_propane": false,
"has_gas": false,
"propane_price": null,
"diesel_price": null,
"gas_regular_price": null,
"gas_super_price": null,
"gas_premium_price": null
}
}
Searches through all points of interest, returning a Geolist of Points objects.
Points can be any kind frommarina
, harbor
, anchorage
, inlet
, bridge
, lock
, lighthouse
, ferry
, landmark
, ramp
Points are essentially polymorphic wrappers around the individual point of interest data types. For example, a Marina object has more properties than a Point. To access those, you can either use the Marina search API or retrieve the associated object from the api_url
property.
marina
, anchorage
, harbor
, inlet
, bridge
, lock
, lighthouse
, ferry
, landmark
, ramp
.curl -XGET https://api.marinas.com/v1/points/search \
-d 'location[lat]=39.2597909161243' \
-d 'location[lon]=-76.6135644707624'
{
"resource": "geolist",
"data": [
{
"id": "95cz",
"resource": "point",
"name": "Baltimore Yacht Basin",
"kind": "marina",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.2597909161243,
"lon": -76.6135644707624,
"what3words": "fakes.dined.pepper"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/be9819b5d260e6d3f48324e484e88b96cb84ef3a6ccd64bfc85677af2f80bc05.jpg",
"small_url": "https://img.marinas.com/v2/782f613e39a3e93e96618e976722bfab712e1422a7b2313e7fa3cd5f85664eea.jpg",
"medium_url": "https://img.marinas.com/v2/6471dbf0545189b9198602ccbb570744b9d5ea39223d7e0e8ccf28202d5d4389.jpg",
"banner_url": "https://img.marinas.com/v2/4d746d47a13b146a17c0e4a01df956ee9281e1bfdf8f2449f656e1c8e90642dc.jpg",
"full_url": "https://img.marinas.com/v2/d7c6d4bdb41d74accd19142ab8f013b11cefc501d32b1f3714207a68b84274e7.jpg"
}
],
"total_count": 8
},
"web_url": "https://marinas.com/view/marina/95cz_Baltimore_Yacht_Basin_Baltimore_MD_United_States",
"api_url": "https://api.marinas.com/v1/marinas/95cz",
"icon_url": "https://marinas.com/assets/map/marker_marina-61b3ca5ea8e7fab4eef2d25df94457f060498ca1a72e3981715f46d2ab347db4.svg",
"fuel": {
"has_diesel": false,
"has_propane": false,
"has_gas": false,
"propane_price": null,
"diesel_price": null,
"gas_regular_price": null,
"gas_super_price": null,
"gas_premium_price": null
}
}
],
"bounds": {
"ne": {
"lat": 39.2597909161243,
"lon": -76.6135644707624
},
"sw": {
"lat": 39.2597909161243,
"lon": -76.6135644707624
}
},
"total_count": 842
}
Returns the requested point
curl -XGET https://api.marinas.com/v1/points/95cz
{
"id": "95cz",
"resource": "point",
"name": "Baltimore Yacht Basin",
"kind": "marina",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.2597909161243,
"lon": -76.6135644707624,
"what3words": "fakes.dined.pepper"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/be9819b5d260e6d3f48324e484e88b96cb84ef3a6ccd64bfc85677af2f80bc05.jpg",
"small_url": "https://img.marinas.com/v2/782f613e39a3e93e96618e976722bfab712e1422a7b2313e7fa3cd5f85664eea.jpg",
"medium_url": "https://img.marinas.com/v2/6471dbf0545189b9198602ccbb570744b9d5ea39223d7e0e8ccf28202d5d4389.jpg",
"banner_url": "https://img.marinas.com/v2/4d746d47a13b146a17c0e4a01df956ee9281e1bfdf8f2449f656e1c8e90642dc.jpg",
"full_url": "https://img.marinas.com/v2/d7c6d4bdb41d74accd19142ab8f013b11cefc501d32b1f3714207a68b84274e7.jpg"
}
],
"total_count": 8
},
"web_url": "https://marinas.com/view/marina/95cz_Baltimore_Yacht_Basin_Baltimore_MD_United_States",
"api_url": "https://api.marinas.com/v1/marinas/95cz",
"icon_url": "https://marinas.com/assets/map/marker_marina-61b3ca5ea8e7fab4eef2d25df94457f060498ca1a72e3981715f46d2ab347db4.svg",
"fuel": {
"has_diesel": false,
"has_propane": false,
"has_gas": false,
"propane_price": null,
"diesel_price": null,
"gas_regular_price": null,
"gas_super_price": null,
"gas_premium_price": null
}
}
Searches through all Marina objects, returning a Geolist of Marinas
true
, false
.true
, false
.true
, false
.curl -XGET https://api.marinas.com/v1/marinas/search \
-d 'location[lat]=39.2237710227071' \
-d 'location[lon]=-76.4610669316746'
{
"resource": "geolist",
"data": [
{
"id": "4qcq",
"resource": "marina",
"name": "Atlantis Marina, Inc.",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.2237710227071,
"lon": -76.4610669316746,
"what3words": "articulated.shrewd.trickles"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/fed096fa58b229867bad2e90e03d7953318afbb10f53a9d6275d722a2307a960.jpg",
"small_url": "https://img.marinas.com/v2/cc5ae5e56e16c19412918fb120df8ba21f8a0ea18e7555cf18307691de6ff7d5.jpg",
"medium_url": "https://img.marinas.com/v2/bd3fadc868e23193e708a72173bfe913c572951eca8fcdac7aaf749061d4b360.jpg",
"banner_url": "https://img.marinas.com/v2/84c4e321561ec19b86dce864aefde9d4fdcd86ff0c2a07c59a58a37ef2426e3c.jpg",
"full_url": "https://img.marinas.com/v2/8f9a57dbbbdb0048d3376af82f243779572781a9ceed9d697513fa86772ec6b0.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/45cde2a13df143a4a2cb5092399db09101a4b5de6dc801269efcdab798e381be.jpg",
"small_url": "https://img.marinas.com/v2/091f0a6eabbc8387d49c54eb352b4924fd25fb72c8d30cd8ed4cfdb8851e45a1.jpg",
"medium_url": "https://img.marinas.com/v2/7f23e46ac8a56c598d3aa985839acc669ab1bbf17424d9d759f7f483eb3f6e33.jpg",
"banner_url": "https://img.marinas.com/v2/d7178e9a10bb57a996e3b31ef386464b92ad2db0dfea577b156010211f253f9b.jpg",
"full_url": "https://img.marinas.com/v2/782b508e618b4c820866aefab65243de7bf8a254baedcd85b666a8312282e552.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/073d0aaf5a80bcc062bfaccf7cb791f344babc5e7200729fb1ecc620e0c38db4.jpg",
"small_url": "https://img.marinas.com/v2/9425e7354f562903d5341eaabf93f5612613bdec35df7d7e4d8cd1e82ec8679d.jpg",
"medium_url": "https://img.marinas.com/v2/4bd37bd56057a7d44795e36c65e3e8759ded37625c795b548d39cf3e3462ae60.jpg",
"banner_url": "https://img.marinas.com/v2/ca2c635c0649b135066c7ca7243b707eaaad2a972ab9df5db0848187ec94cd14.jpg",
"full_url": "https://img.marinas.com/v2/924f388efb464c9ea1ef60322790fe043dec81a5a365d981ed370faf1ce01193.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/b76d05196bf5be1fd19cee571b47759a43a51114e1e9b3bdbc2272259cf8decd.jpg",
"small_url": "https://img.marinas.com/v2/6cc84e577db63f21860d75a37f83ef593cf358e4af3aa35bbcf43f80fdd5defe.jpg",
"medium_url": "https://img.marinas.com/v2/bdef171f551743cb465a9637145edd1a3b262ed78fad7ec3439b3eb9e0ee4b42.jpg",
"banner_url": "https://img.marinas.com/v2/6bb37901afc50ec23c1eac7383f44512ca270c7b5d4641767d0316b5505e254b.jpg",
"full_url": "https://img.marinas.com/v2/b3e69cd27d0fc57899fa9038b34b915c21e98eb391307dcb9200bb402c5d43ed.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/13ddc7b06837832c96e2b8125f98a0c845bf7797b2fb850f55cf4111da69be65.jpg",
"small_url": "https://img.marinas.com/v2/8e368df3370616463c1cabe3f2856638b3abf6cd744b9a9df0920ea370f63c26.jpg",
"medium_url": "https://img.marinas.com/v2/baffaf033a8a25535fc86366a20f8c1f37173a42a20b35e3ff4464d57ec5d37c.jpg",
"banner_url": "https://img.marinas.com/v2/3880f89d123efc08512cc70e5b2a1446c8f6bb6b9b3b098a5d551bae36b23a38.jpg",
"full_url": "https://img.marinas.com/v2/33a0026165753dde984bd82ad00f62d0dfa521afd03e9d30ced75b1d9617f368.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/802d5527d0cf2cd9281d5d62b962310928b692a23e3ae36aa26cd461c10cce68.jpg",
"small_url": "https://img.marinas.com/v2/6925b76554c5fe34bc28559a4743cd4b727db0908ea8d0de1e74aafc468efb3b.jpg",
"medium_url": "https://img.marinas.com/v2/294bfe146cd8ec5a8b4227903a4220cca598ddf6a75018a346297df084cfbbe7.jpg",
"banner_url": "https://img.marinas.com/v2/d336fcb8afe59118122ad0f0e637ea5b420e2483b3942dda21f94c80b478bca9.jpg",
"full_url": "https://img.marinas.com/v2/0f01001afd5fd7eb81f9da576c3c22ed5b094eaa9186f4d13d85d30c4d0ff7b0.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/ba028d877a1fe237d7436bce1f03ef48f443b866fd0aa852d05e7e8dc39580bf.jpg",
"small_url": "https://img.marinas.com/v2/8e655f594fe70f21308868433c456523d9e60383b1313340f875237e91bf3109.jpg",
"medium_url": "https://img.marinas.com/v2/b02d26ec4533b6dd6e0bc33d655aeaba00c5ac3e0e7e660a8818e36200bccb3e.jpg",
"banner_url": "https://img.marinas.com/v2/25954c0dd1b8695d3b3203aa61ec5380e6abaf2e1bed6f179f6c518f4ab08d18.jpg",
"full_url": "https://img.marinas.com/v2/06d40fd08a1cff7cdc71d57c55b7cfb50254f7953de2ac859608ac075c8d9959.jpg"
}
],
"total_count": 7
},
"web_url": "https://marinas.com/view/marina/4qcq_Atlantis_Marina_Inc_Baltimore_MD_United_States",
"api_url": "https://api.marinas.com/v1/marinas/4qcq",
"icon_url": "https://marinas.com/assets/map/marker_marina-61b3ca5ea8e7fab4eef2d25df94457f060498ca1a72e3981715f46d2ab347db4.svg",
"fuel": {
"has_diesel": false,
"has_propane": false,
"has_gas": false,
"propane_price": null,
"diesel_price": null,
"gas_regular_price": null,
"gas_super_price": null,
"gas_premium_price": null
}
}
],
"bounds": {
"ne": {
"lat": 39.2237710227071,
"lon": -76.4610669316746
},
"sw": {
"lat": 39.2237710227071,
"lon": -76.4610669316746
}
},
"total_count": 794
}
Returns the requested marina
curl -XGET https://api.marinas.com/v1/marinas/4qcq
{
"id": "4qcq",
"resource": "marina",
"name": "Atlantis Marina, Inc.",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.2237710227071,
"lon": -76.4610669316746,
"what3words": "articulated.shrewd.trickles"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/fed096fa58b229867bad2e90e03d7953318afbb10f53a9d6275d722a2307a960.jpg",
"small_url": "https://img.marinas.com/v2/cc5ae5e56e16c19412918fb120df8ba21f8a0ea18e7555cf18307691de6ff7d5.jpg",
"medium_url": "https://img.marinas.com/v2/bd3fadc868e23193e708a72173bfe913c572951eca8fcdac7aaf749061d4b360.jpg",
"banner_url": "https://img.marinas.com/v2/84c4e321561ec19b86dce864aefde9d4fdcd86ff0c2a07c59a58a37ef2426e3c.jpg",
"full_url": "https://img.marinas.com/v2/8f9a57dbbbdb0048d3376af82f243779572781a9ceed9d697513fa86772ec6b0.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/45cde2a13df143a4a2cb5092399db09101a4b5de6dc801269efcdab798e381be.jpg",
"small_url": "https://img.marinas.com/v2/091f0a6eabbc8387d49c54eb352b4924fd25fb72c8d30cd8ed4cfdb8851e45a1.jpg",
"medium_url": "https://img.marinas.com/v2/7f23e46ac8a56c598d3aa985839acc669ab1bbf17424d9d759f7f483eb3f6e33.jpg",
"banner_url": "https://img.marinas.com/v2/d7178e9a10bb57a996e3b31ef386464b92ad2db0dfea577b156010211f253f9b.jpg",
"full_url": "https://img.marinas.com/v2/782b508e618b4c820866aefab65243de7bf8a254baedcd85b666a8312282e552.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/073d0aaf5a80bcc062bfaccf7cb791f344babc5e7200729fb1ecc620e0c38db4.jpg",
"small_url": "https://img.marinas.com/v2/9425e7354f562903d5341eaabf93f5612613bdec35df7d7e4d8cd1e82ec8679d.jpg",
"medium_url": "https://img.marinas.com/v2/4bd37bd56057a7d44795e36c65e3e8759ded37625c795b548d39cf3e3462ae60.jpg",
"banner_url": "https://img.marinas.com/v2/ca2c635c0649b135066c7ca7243b707eaaad2a972ab9df5db0848187ec94cd14.jpg",
"full_url": "https://img.marinas.com/v2/924f388efb464c9ea1ef60322790fe043dec81a5a365d981ed370faf1ce01193.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/b76d05196bf5be1fd19cee571b47759a43a51114e1e9b3bdbc2272259cf8decd.jpg",
"small_url": "https://img.marinas.com/v2/6cc84e577db63f21860d75a37f83ef593cf358e4af3aa35bbcf43f80fdd5defe.jpg",
"medium_url": "https://img.marinas.com/v2/bdef171f551743cb465a9637145edd1a3b262ed78fad7ec3439b3eb9e0ee4b42.jpg",
"banner_url": "https://img.marinas.com/v2/6bb37901afc50ec23c1eac7383f44512ca270c7b5d4641767d0316b5505e254b.jpg",
"full_url": "https://img.marinas.com/v2/b3e69cd27d0fc57899fa9038b34b915c21e98eb391307dcb9200bb402c5d43ed.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/13ddc7b06837832c96e2b8125f98a0c845bf7797b2fb850f55cf4111da69be65.jpg",
"small_url": "https://img.marinas.com/v2/8e368df3370616463c1cabe3f2856638b3abf6cd744b9a9df0920ea370f63c26.jpg",
"medium_url": "https://img.marinas.com/v2/baffaf033a8a25535fc86366a20f8c1f37173a42a20b35e3ff4464d57ec5d37c.jpg",
"banner_url": "https://img.marinas.com/v2/3880f89d123efc08512cc70e5b2a1446c8f6bb6b9b3b098a5d551bae36b23a38.jpg",
"full_url": "https://img.marinas.com/v2/33a0026165753dde984bd82ad00f62d0dfa521afd03e9d30ced75b1d9617f368.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/802d5527d0cf2cd9281d5d62b962310928b692a23e3ae36aa26cd461c10cce68.jpg",
"small_url": "https://img.marinas.com/v2/6925b76554c5fe34bc28559a4743cd4b727db0908ea8d0de1e74aafc468efb3b.jpg",
"medium_url": "https://img.marinas.com/v2/294bfe146cd8ec5a8b4227903a4220cca598ddf6a75018a346297df084cfbbe7.jpg",
"banner_url": "https://img.marinas.com/v2/d336fcb8afe59118122ad0f0e637ea5b420e2483b3942dda21f94c80b478bca9.jpg",
"full_url": "https://img.marinas.com/v2/0f01001afd5fd7eb81f9da576c3c22ed5b094eaa9186f4d13d85d30c4d0ff7b0.jpg"
},
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/ba028d877a1fe237d7436bce1f03ef48f443b866fd0aa852d05e7e8dc39580bf.jpg",
"small_url": "https://img.marinas.com/v2/8e655f594fe70f21308868433c456523d9e60383b1313340f875237e91bf3109.jpg",
"medium_url": "https://img.marinas.com/v2/b02d26ec4533b6dd6e0bc33d655aeaba00c5ac3e0e7e660a8818e36200bccb3e.jpg",
"banner_url": "https://img.marinas.com/v2/25954c0dd1b8695d3b3203aa61ec5380e6abaf2e1bed6f179f6c518f4ab08d18.jpg",
"full_url": "https://img.marinas.com/v2/06d40fd08a1cff7cdc71d57c55b7cfb50254f7953de2ac859608ac075c8d9959.jpg"
}
],
"total_count": 7
},
"web_url": "https://marinas.com/view/marina/4qcq_Atlantis_Marina_Inc_Baltimore_MD_United_States",
"api_url": "https://api.marinas.com/v1/marinas/4qcq",
"icon_url": "https://marinas.com/assets/map/marker_marina-61b3ca5ea8e7fab4eef2d25df94457f060498ca1a72e3981715f46d2ab347db4.svg",
"fuel": {
"has_diesel": false,
"has_propane": false,
"has_gas": false,
"propane_price": null,
"diesel_price": null,
"gas_regular_price": null,
"gas_super_price": null,
"gas_premium_price": null
}
}
Returns the requested harbor
curl -XGET https://api.marinas.com/v1/harbors/ygtv
{
"id": "ygtv",
"resource": "harbor",
"name": "Bass Harbor",
"rating": null,
"review_count": 0,
"location": {
"lat": 44.2546997,
"lon": -68.3480988,
"what3words": "shutter.unfilled.sugars"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/c25b2f19762bd73466ad017a0b36c5796404e1f8ac12a3351b9fda8924f6fbf1.jpg",
"small_url": "https://img.marinas.com/v2/a551ea70d7146eb93e4b69fd9b7d0fe399caaa8e740553d566289bb128cebb18.jpg",
"medium_url": "https://img.marinas.com/v2/95a35a81f938136a004e7b0c1a661be5876803d93c8ebb0c882a0d76d78586f6.jpg",
"banner_url": "https://img.marinas.com/v2/ff68a88bec7c0b6cdefb52f080bb2b8bba19d969a9a3bd8719bce8f41b2610b3.jpg",
"full_url": "https://img.marinas.com/v2/206b7646aadfe55e4510be99f231647dd8603d431f367ecb00bd95e485dc6fda.jpg"
}
],
"total_count": 7
},
"web_url": "https://marinas.com/view/harbor/ygtv_Bass_Harbor_Tremont_ME_United_States",
"api_url": "https://api.marinas.com/v1/harbors/ygtv",
"icon_url": "https://marinas.com/assets/map/marker_harbor-b6a4ad67eebea11fa25cccfcb58b1515b588c226eb29350fceeb52da0144b75d.svg"
}
Returns the requested anchorage
curl -XGET https://api.marinas.com/v1/anchorages/zgfl
{
"id": "zgfl",
"resource": "anchorage",
"name": "Matinicus Island Moorings",
"rating": null,
"review_count": 0,
"location": {
"lat": 43.8652992,
"lon": -68.8824997,
"what3words": "rooks.deductions.another"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://img.marinas.com/v2/4d5a9e7141aa732e2fad3e3254b7e00d0d6a21626ef5a5e0e56e0c8e7f220db0.jpg",
"small_url": "https://img.marinas.com/v2/bfb1e9654e43da48f81f8d2fbf0aad542c3d677182e1bd503c9a2bcf2946e93e.jpg",
"medium_url": "https://img.marinas.com/v2/cacb1dbef6e3c9c7a67b18267f494131f135fe8d740ec3cd15122268a029c1e3.jpg",
"banner_url": "https://img.marinas.com/v2/b6063d35f51828769f29faa86a4138afecaf8152c4557abfd47c022b018e49c3.jpg",
"full_url": "https://img.marinas.com/v2/145f611c394845964f79c997c1a80788047c516a55fd679627c53782620b5b0f.jpg"
}
],
"total_count": 7
},
"web_url": "https://marinas.com/view/anchorage/zgfl_Matinicus_Island_Moorings_Anchorage_Matinicus_Island_ME_United_States",
"api_url": "https://api.marinas.com/v1/anchorages/zgfl",
"icon_url": "https://marinas.com/assets/map/marker_anchorage-2f24ab8edcca606182cf75e5c4941fbcb058cd442052ac1283445b75333a0dbc.svg"
}
Returns the requested inlet
curl -XGET https://api.marinas.com/v1/inlets/mli4
{
"id": "mli4",
"resource": "inlet",
"name": "Beach Creek South Inlet",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.0032997,
"lon": -74.8133011,
"what3words": "caps.popular.ceased"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.8133011,39.0032997,13/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.8133011,39.0032997,13/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.8133011,39.0032997,13/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.8133011,39.0032997,13/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.8133011,39.0032997,13/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/inlet/mli4_Beach_Creek_South_Inlet_North_Wildwood_NJ_United_States",
"api_url": "https://api.marinas.com/v1/inlets/mli4",
"icon_url": "https://marinas.com/assets/map/marker_inlet-d52f22ecf736a694c6d25afd910be07557cc743c23d6ff101f08c7d7819af587.svg"
}
Returns the requested bridge
curl -XGET https://api.marinas.com/v1/bridges/7puq
{
"id": "7puq",
"resource": "bridge",
"name": "Stainton Memorial Bridge",
"rating": null,
"review_count": 0,
"location": {
"lat": 39.2844009,
"lon": -74.5819016,
"what3words": "beware.romance.loiter"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.5819016,39.2844009,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.5819016,39.2844009,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.5819016,39.2844009,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.5819016,39.2844009,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-74.5819016,39.2844009,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/bridge/7puq_Stainton_Memorial_Bridge_Ocean_City_NJ_United_States",
"api_url": "https://api.marinas.com/v1/bridges/7puq",
"icon_url": "https://marinas.com/assets/map/marker_bridge-1a891cdf787180475bf780707eb754ede507781f5d123f3d51412deda2726631.svg"
}
Returns the requested lock
curl -XGET https://api.marinas.com/v1/locks/rvhr
{
"id": "rvhr",
"resource": "lock",
"name": "Millers Ferry Lock",
"rating": null,
"review_count": 0,
"location": {
"lat": 32.0786018,
"lon": -87.3972015,
"what3words": "doodling.pullover.drama"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-87.3972015,32.0786018,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-87.3972015,32.0786018,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-87.3972015,32.0786018,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-87.3972015,32.0786018,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-87.3972015,32.0786018,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/lock/rvhr_Millers_Ferry_Lock_AL_United_States",
"api_url": "https://api.marinas.com/v1/locks/rvhr",
"icon_url": "https://marinas.com/assets/map/marker_lock-031ad3063a02c6ae9a9e83a4b831b71e514336e5fddc42f57dd0b1b76ad4bc4f.svg"
}
Returns the requested lighthouse
curl -XGET https://api.marinas.com/v1/lighthouses/4vav
{
"id": "4vav",
"resource": "lighthouse",
"name": "Penfield Reef Light",
"rating": null,
"review_count": 0,
"location": {
"lat": 41.1171494,
"lon": -73.2220612,
"what3words": "marketed.invitingly.hourly"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-73.2220612,41.1171494,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-73.2220612,41.1171494,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-73.2220612,41.1171494,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-73.2220612,41.1171494,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-73.2220612,41.1171494,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/lighthouse/4vav_Penfield_Reef_Light_Lighthouse_CT_United_States",
"api_url": "https://api.marinas.com/v1/lighthouses/4vav",
"icon_url": "https://marinas.com/assets/map/marker_lighthouse-4c26738be58762d672a6b14b92c79485e7fb4fd5f914f91b92c46a9dcae1d0ba.svg"
}
Returns the requested ferry
curl -XGET https://api.marinas.com/v1/ferrys/3xbx
{
"id": "3xbx",
"resource": "ferry",
"name": "Fynshav Færgehavn",
"rating": null,
"review_count": 0,
"location": {
"lat": 54.9944,
"lon": 9.98417,
"what3words": "sprint.crossword.banner"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/9.98417,54.9944,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/9.98417,54.9944,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/9.98417,54.9944,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/9.98417,54.9944,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/9.98417,54.9944,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/ferry/3xbx_Fynshav_Færgehavn_Ferry_South_Jutland_Denmark",
"api_url": "https://api.marinas.com/v1/ferrys/3xbx",
"icon_url": "https://marinas.com/assets/map/marker_ferry-20bb3acde367b1ea44b1d114ad0e55ef932bc473f3900585cd611e989f64780e.svg"
}
Returns the requested landmark
curl -XGET https://api.marinas.com/v1/landmarks/rjs1
{
"id": "rjs1",
"resource": "landmark",
"name": "Fregatten Jyllands Ship",
"rating": null,
"review_count": 0,
"location": {
"lat": 56.2000008,
"lon": 10.6702995,
"what3words": "unleash.costing.dunk"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/10.6702995,56.2000008,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/10.6702995,56.2000008,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/10.6702995,56.2000008,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/10.6702995,56.2000008,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/10.6702995,56.2000008,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/landmark/rjs1_Fregatten_Jyllands_Ship_Landmark_North_Jutland_Denmark",
"api_url": "https://api.marinas.com/v1/landmarks/rjs1",
"icon_url": "https://marinas.com/assets/map/marker_landmark-ea7546c4fd3808495beb2dd71648bff53b27b53775184e82de28d6b4642bfea3.svg"
}
Returns the requested ramp
curl -XGET https://api.marinas.com/v1/ramps/elcn
{
"id": "elcn",
"resource": "ramp",
"name": "Calais Town Landing",
"rating": null,
"review_count": 0,
"location": {
"lat": 45.1899986,
"lon": -67.2769012,
"what3words": "litmus.twos.maturity"
},
"images": {
"resource": "list",
"data": [
{
"resource": "image",
"thumbnail_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-67.2769012,45.1899986,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"small_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-67.2769012,45.1899986,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"medium_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-67.2769012,45.1899986,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"banner_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-67.2769012,45.1899986,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w",
"full_url": "https://api.mapbox.com/styles/v1/mapbox/satellite-v9/static/-67.2769012,45.1899986,17/[email protected]?access_token=pk.eyJ1IjoiZG9ja3dhIiwiYSI6ImNpdjluaHQ3dDAwcm0ydHBkYmZ5Y3p3MmYifQ.nnzROmNkH6TJlWvJQOO34w"
}
],
"total_count": 1
},
"web_url": "https://marinas.com/view/ramp/elcn_Calais_Town_Landing_Ramp_Calais_ME_United_States",
"api_url": "https://api.marinas.com/v1/ramps/elcn",
"icon_url": "https://marinas.com/assets/map/marker_ramp-bf89640e772dbc6730ecabdef9383c853b655e6838285aeb2ddb9f651f92ffee.svg"
}