Select an Endpoint

Select an API endpoint to inspect it and see examples suited to its format.

JSON
GET
Resource Preview
No request sent
Choose an endpoint to see the available resource action.

Usage 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://..."