Helipaddy API Documentation

Helipaddy is a platform that provides landing information for helicopter pilots. This platform provides an API for developers who want to access the information to build custom applications. In this document, we will give you an overview of the available API endpoints, and provide you with examples of how to call them using JavaScript.

API Endpoints

Helipaddy provides several API endpoints that you can use to access landing information. Some of the available endpoints are:

Search Endpoint

This endpoint is used to search for landing information based on a location. You can request a search using the following URL:

https://api.helipaddy.com/v1/search?q=QUERY&lat=LATITUDE&lon=LONGITUDE&limit=LIMIT

Example

let query = "London";
let latitude = 51.5074;
let longitude = -0.1278;
let limit = 10;

let requestUrl = `https://api.helipaddy.com/v1/search?q=${query}&lat=${latitude}&lon=${longitude}&limit=${limit}`;

fetch(requestUrl)
.then(response => response.json())
.then(data => console.log(data));

Landing Information Endpoint

This endpoint is used to retrieve information about a specific landing based on its ID. You can request the landing information using the following URL:

https://api.helipaddy.com/v1/landing/{id}

Example

let landingId = "5c34dcc4c4b6154468503e57";

let requestUrl = `https://api.helipaddy.com/v1/landing/${landingId}`;

fetch(requestUrl)
.then(response => response.json())
.then(data => console.log(data));

Weather Endpoint

This endpoint is used to retrieve weather information for a specific coordinate. You can request the weather information using the following URL:

https://api.helipaddy.com/v1/weather?lat=LATITUDE&lon=LONGITUDE

Example

let latitude = 51.5074;
let longitude = -0.1278;

let requestUrl = `https://api.helipaddy.com/v1/weather?lat=${latitude}&lon=${longitude}`;

fetch(requestUrl)
.then(response => response.json())
.then(data => console.log(data));

Conclusion

Helipaddy provides a robust API that enables developers to access the platform's landing information and build custom applications. We have seen examples of how to call some of the available API endpoints using JavaScript. You can find more information on the API documentation page here: https://helipaddy.com/about/API.

Related APIs