Find an API

Search public APIs with auth details & Postman guides

← All APIs

Aviation Radiation API

amentum · Location

Location No Auth Free & Open location open_data

Our atmosphere protects us from a hostile space radiation environment comprising high energy particles of solar and intergalactic origin. Solar radiation is significant during unpredictable and short lived solar flares and coronal mass ejections (CMEs); however, galactic cosmic radiation (GCR) is omnipresent. The GCR intensity varies with latitude, longitude, and time due to effects of solar activity on the interplanetary magnetic field, as well as the Earth's magnetic field. Space radiation col

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET The ambient dose equivalent rate calculated for a single particle type, or accumulated over all particle types.

The ambient dose equivalent, H*(10), is an operational quantity that simulates the human body by measuring the dose equivalent at a depth of 10 mm within a tissue equivalent sphere of 300 mm diameter. It is a measurable quantity that is used to calibrate area monitors (radiation detectors) for mi

https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose?day=1&utc=3&year=2019&month=12&altitude=11&latitude=30&particle=total&longitude=30

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose?day=1&utc=3&year=2019&month=12&altitude=11&latitude=30&particle=total&longitude=30"
import requests
params = {
    "day": "1",
    "utc": "3",
    "year": "2019",
    "month": "12",
    "altitude": "11",
    "latitude": "30",
    "particle": "total",
    "longitude": "30"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose');
url.searchParams.set('day', '1');
url.searchParams.set('utc', '3');
url.searchParams.set('year', '2019');
url.searchParams.set('month', '12');
url.searchParams.set('altitude', '11');
url.searchParams.set('latitude', '30');
url.searchParams.set('particle', 'total');
url.searchParams.set('longitude', '30');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose")
	q := baseURL.Query()
	q.Set("day", "1")
	q.Set("utc", "3")
	q.Set("year", "2019")
	q.Set("month", "12")
	q.Set("altitude", "11")
	q.Set("latitude", "30")
	q.Set("particle", "total")
	q.Set("longitude", "30")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose")
uri.query = URI.encode_www_form({
  "day" => "1",
  "utc" => "3",
  "year" => "2019",
  "month" => "12",
  "altitude" => "11",
  "latitude" => "30",
  "particle" => "total",
  "longitude" => "30"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/ambient_dose?" . http_build_query([
    "day" => "1",
    "utc" => "3",
    "year" => "2019",
    "month" => "12",
    "altitude" => "11",
    "latitude" => "30",
    "particle" => "total",
    "longitude" => "30"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET The effective dose rate calculated for a single particle type, or accumulated over all particle types.

Effective Dose is a radiation protection quantity defined by the International Commission on Radiological Protection (ICRP) and represents the stochastic health risk to the human body at low levels of radiation. It accounts for the different sensitivities of organs to ionising radiation, as well a

https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose?day=1&utc=3&year=2019&month=12&altitude=11&latitude=30&particle=total&longitude=30

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose?day=1&utc=3&year=2019&month=12&altitude=11&latitude=30&particle=total&longitude=30"
import requests
params = {
    "day": "1",
    "utc": "3",
    "year": "2019",
    "month": "12",
    "altitude": "11",
    "latitude": "30",
    "particle": "total",
    "longitude": "30"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose');
url.searchParams.set('day', '1');
url.searchParams.set('utc', '3');
url.searchParams.set('year', '2019');
url.searchParams.set('month', '12');
url.searchParams.set('altitude', '11');
url.searchParams.set('latitude', '30');
url.searchParams.set('particle', 'total');
url.searchParams.set('longitude', '30');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose")
	q := baseURL.Query()
	q.Set("day", "1")
	q.Set("utc", "3")
	q.Set("year", "2019")
	q.Set("month", "12")
	q.Set("altitude", "11")
	q.Set("latitude", "30")
	q.Set("particle", "total")
	q.Set("longitude", "30")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose")
uri.query = URI.encode_www_form({
  "day" => "1",
  "utc" => "3",
  "year" => "2019",
  "month" => "12",
  "altitude" => "11",
  "latitude" => "30",
  "particle" => "total",
  "longitude" => "30"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/cari7/effective_dose?" . http_build_query([
    "day" => "1",
    "utc" => "3",
    "year" => "2019",
    "month" => "12",
    "altitude" => "11",
    "latitude" => "30",
    "particle" => "total",
    "longitude" => "30"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET The ambient dose equivalent rate calculated for a single particle type, or accumulated over all particle types.

The ambient dose equivalent, H*(10), is an operational quantity that simulates the human body by measuring the dose equivalent at a depth of 10 mm within a tissue equivalent sphere of 300 mm diameter. It is a measurable quantity that is used to calibrate area monitors (radiation detectors) for mi

https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose?day=1&year=2019&month=12&altitude=11&latitude=30&particle=proton&longitude=30&atmospheric_depth=0.92

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose?day=1&year=2019&month=12&altitude=11&latitude=30&particle=proton&longitude=30&atmospheric_depth=0.92"
import requests
params = {
    "day": "1",
    "year": "2019",
    "month": "12",
    "altitude": "11",
    "latitude": "30",
    "particle": "proton",
    "longitude": "30",
    "atmospheric_depth": "0.92"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose');
url.searchParams.set('day', '1');
url.searchParams.set('year', '2019');
url.searchParams.set('month', '12');
url.searchParams.set('altitude', '11');
url.searchParams.set('latitude', '30');
url.searchParams.set('particle', 'proton');
url.searchParams.set('longitude', '30');
url.searchParams.set('atmospheric_depth', '0.92');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose")
	q := baseURL.Query()
	q.Set("day", "1")
	q.Set("year", "2019")
	q.Set("month", "12")
	q.Set("altitude", "11")
	q.Set("latitude", "30")
	q.Set("particle", "proton")
	q.Set("longitude", "30")
	q.Set("atmospheric_depth", "0.92")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose")
uri.query = URI.encode_www_form({
  "day" => "1",
  "year" => "2019",
  "month" => "12",
  "altitude" => "11",
  "latitude" => "30",
  "particle" => "proton",
  "longitude" => "30",
  "atmospheric_depth" => "0.92"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/parma/ambient_dose?" . http_build_query([
    "day" => "1",
    "year" => "2019",
    "month" => "12",
    "altitude" => "11",
    "latitude" => "30",
    "particle" => "proton",
    "longitude" => "30",
    "atmospheric_depth" => "0.92"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Aviation Radiation API?

Aviation Radiation API is a Location API. Developers commonly use location APIs for:

  • tracking assets and vehicles in real time
  • building delivery and logistics apps
  • finding nearby businesses or services
  • geo-fencing and location-based notifications
  • address validation and autocomplete

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Aviation Radiation API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗