API endpoint that allows Location instances to be viewed.

GET: Return a list of all the existing location instances.

FILTERS: Parameters - 'id', 'agency_id', 'name', 'name__contains', 'latitude', 'latitude__contains', 'longitude', 'longitude__contains', 'location__name', 'location__name__contains', 'location__id', 'orbital_launch_attempt_count', 'total_launch_count'

ORDERING: Fields - 'id', 'name', 'location__id', 'location__name', 'orbital_launch_attempt_count', 'total_launch_count'

Example - /2.2.0/pad/?ordering=location__name

GET /2.2.0/pad/111/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 111,
    "url": "https://ll.thespacedevs.com/2.2.0/pad/111/?format=api",
    "agency_id": 121,
    "name": "Suborbital Pad A",
    "description": "Suborbital Pad A was used for Starhopper flights, the SN5 and SN6 hops, as well as multiple Starship high altitude flight tests. It was demolished at the end of 2023, to make room for a second orbital pad.",
    "info_url": null,
    "wiki_url": "https://en.wikipedia.org/wiki/SpaceX_South_Texas_Launch_Site",
    "map_url": "https://www.google.com/maps?q=25.997116,-97.15503099856647",
    "latitude": "25.997116",
    "longitude": "-97.15503099856647",
    "location": {
        "id": 143,
        "url": "https://ll.thespacedevs.com/2.2.0/location/143/?format=api",
        "name": "SpaceX Starbase, TX, USA",
        "country_code": "USA",
        "description": "Starbase is an industrial complex for Starship rockets and the headquarters of the American aerospace manufacturer company SpaceX. Located near Brownsville, Texas, United States, it has been under construction since the late 2010s by SpaceX. Starbase is composed of a spaceport near the Gulf of Mexico, a production facility at the Boca Chica village, and a small structure test site along the Texas State Highway 4.",
        "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_143_20200803142438.jpg",
        "timezone_name": "America/Chicago",
        "total_launch_count": 17,
        "total_landing_count": 13
    },
    "country_code": "USA",
    "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/pad_111_20200803143229.jpg",
    "total_launch_count": 7,
    "orbital_launch_attempt_count": 0
}