Select an Endpoint

Select an API endpoint from the sidebar list to inspect properties, read code examples, and perform playground requests.

JSON
GET
Response Body
No request sent
Click "Try It Out" to send a request to the serverless endpoint.

Request Snippet Examples

JavaScript
Python
GDAL/OGR
cURL
fetch('https://...')
  .then(response => response.json())
  .then(data => console.log(data));
import requests

url = "https://..."
response = requests.get(url)
data = response.json()
print(data)
ogrinfo -ro -al "/vsicurl/https://..."
curl -L -X GET "https://..."