Options

API options can be found by sending an OPTIONS request to the POI API endpoint. The header will return the allowed request types and a body containing the current API version and a history of deprecated versions will be returned.

Request

OPTIONS  https://api.naurt.net/poi/v3
CURL
curl -X OPTIONS https://api.naurt.net/poi/v3 -i

Response

JSON
{'Content-Type': 'application/json', 'allow': 'DELETE, GET, OPTIONS, POST, PUT'}
{"current_version":"v3", "deprecated_versions":["v1", "v2"]}
Table of Contents