Create and initialise a new `AirspaceAccount` on Solana.
curl --request POST \
--url https://api.example.com/solana/airspace \
--header 'Content-Type: application/json' \
--data '
{
"property_id": "<string>",
"min_alt_m": 123,
"max_alt_m": 123,
"poly_lat": [
123
],
"poly_lon": [
123
],
"fee_lamports": 123,
"treasury": "<string>"
}
'import requests
url = "https://api.example.com/solana/airspace"
payload = {
"property_id": "<string>",
"min_alt_m": 123,
"max_alt_m": 123,
"poly_lat": [123],
"poly_lon": [123],
"fee_lamports": 123,
"treasury": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
property_id: '<string>',
min_alt_m: 123,
max_alt_m: 123,
poly_lat: [123],
poly_lon: [123],
fee_lamports: 123,
treasury: '<string>'
})
};
fetch('https://api.example.com/solana/airspace', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/solana/airspace",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'property_id' => '<string>',
'min_alt_m' => 123,
'max_alt_m' => 123,
'poly_lat' => [
123
],
'poly_lon' => [
123
],
'fee_lamports' => 123,
'treasury' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/solana/airspace"
payload := strings.NewReader("{\n \"property_id\": \"<string>\",\n \"min_alt_m\": 123,\n \"max_alt_m\": 123,\n \"poly_lat\": [\n 123\n ],\n \"poly_lon\": [\n 123\n ],\n \"fee_lamports\": 123,\n \"treasury\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/solana/airspace")
.header("Content-Type", "application/json")
.body("{\n \"property_id\": \"<string>\",\n \"min_alt_m\": 123,\n \"max_alt_m\": 123,\n \"poly_lat\": [\n 123\n ],\n \"poly_lon\": [\n 123\n ],\n \"fee_lamports\": 123,\n \"treasury\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/solana/airspace")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"property_id\": \"<string>\",\n \"min_alt_m\": 123,\n \"max_alt_m\": 123,\n \"poly_lat\": [\n 123\n ],\n \"poly_lon\": [\n 123\n ],\n \"fee_lamports\": 123,\n \"treasury\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"signature": "<string>",
"slot": 123,
"confirmation": "<string>",
"fee_lamports": 123
}solana
Create and initialise a new `AirspaceAccount` on Solana.
POST
/
solana
/
airspace
Create and initialise a new `AirspaceAccount` on Solana.
curl --request POST \
--url https://api.example.com/solana/airspace \
--header 'Content-Type: application/json' \
--data '
{
"property_id": "<string>",
"min_alt_m": 123,
"max_alt_m": 123,
"poly_lat": [
123
],
"poly_lon": [
123
],
"fee_lamports": 123,
"treasury": "<string>"
}
'import requests
url = "https://api.example.com/solana/airspace"
payload = {
"property_id": "<string>",
"min_alt_m": 123,
"max_alt_m": 123,
"poly_lat": [123],
"poly_lon": [123],
"fee_lamports": 123,
"treasury": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
property_id: '<string>',
min_alt_m: 123,
max_alt_m: 123,
poly_lat: [123],
poly_lon: [123],
fee_lamports: 123,
treasury: '<string>'
})
};
fetch('https://api.example.com/solana/airspace', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/solana/airspace",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'property_id' => '<string>',
'min_alt_m' => 123,
'max_alt_m' => 123,
'poly_lat' => [
123
],
'poly_lon' => [
123
],
'fee_lamports' => 123,
'treasury' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/solana/airspace"
payload := strings.NewReader("{\n \"property_id\": \"<string>\",\n \"min_alt_m\": 123,\n \"max_alt_m\": 123,\n \"poly_lat\": [\n 123\n ],\n \"poly_lon\": [\n 123\n ],\n \"fee_lamports\": 123,\n \"treasury\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/solana/airspace")
.header("Content-Type", "application/json")
.body("{\n \"property_id\": \"<string>\",\n \"min_alt_m\": 123,\n \"max_alt_m\": 123,\n \"poly_lat\": [\n 123\n ],\n \"poly_lon\": [\n 123\n ],\n \"fee_lamports\": 123,\n \"treasury\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/solana/airspace")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"property_id\": \"<string>\",\n \"min_alt_m\": 123,\n \"max_alt_m\": 123,\n \"poly_lat\": [\n 123\n ],\n \"poly_lon\": [\n 123\n ],\n \"fee_lamports\": 123,\n \"treasury\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"signature": "<string>",
"slot": 123,
"confirmation": "<string>",
"fee_lamports": 123
}Body
application/json
External property identifier (max 32 bytes UTF-8)
Lower altitude bound in metres AGL
Upper altitude bound in metres AGL
Polygon latitude values
Polygon longitude values
Access policy
Available options:
open, permit, deny, auction Per-crossing fee in lamports (0 = free)
Base58 treasury account for crossing fees
Was this page helpful?
Login handler for basic authentication.Fetch the `AirspaceAccount` metadata for a given property ID.
⌘I