Retrieve coverage as KML

Returns Aura coverage for a response type as a KML artifact. Public docs commonly use security and medical response type IDs. The response body is a KML (XML) document, not JSON. It contains a `<Style>` block and one `<Placemark>` per coverage polygon (often dozens), each with a `<TimeSpan>` and a full `<coordinates>` list. Abbreviated sample: ```xml <kml xmlns="http://www.opengis.net/kml/2.2"> <Document id="1"> <name>Aura-Coverage-Map.kml</name> <open>1</open> <Folder> <name>Coverage</name> <Style id="poly-000000-1200-77-normal"> <LineStyle><color>880d6b</color><width>1.2</width></LineStyle> <PolyStyle><fill>1</fill><color>880d6b</color><outline>1</outline></PolyStyle> </Style> <Placemark> <TimeSpan><begin>2021</begin><end>2026-06-09T00:00:00+00:00</end></TimeSpan> <description>Aura Coverage</description> <styleUrl>#poly-000000-1200-77-normal</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <coordinates>23.424714,-28.267346 23.423691,-28.266286 23.425243,-28.265604 23.424714,-28.267346</coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> </Folder> </Document> </kml> ```

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

responseTypeIdintegerRequired
Response type identifier.

Response

Successful.

Errors

401
Unauthorized Error