Skip to content

Returns the coordinates of all baskets.

GET
/api/map/markers/{markerType}

Authorizations

api_key
Type: API Key (header: X-CSRF-Token)

Parameters

Path Parameters

markerType*
Typestring
Required

Responses

Successful
Authorization
api_key
Variables
Key
Value
markerType*
cURL
curl -X GET \
'http://localhost/api/map/markers/{markerType}'

Samples

cURL
curl -X GET http://localhost/api/map/markers/{markerType}
JavaScript
fetch("http://localhost/api/map/markers/{markerType}")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/map/markers/{markerType}");
Python
import requests
response = requests.get("http://localhost/api/map/markers/{markerType}")
print(response.json())