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/155/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 155,
    "url": "https://ll.thespacedevs.com/2.2.0/pad/155/?format=api",
    "agency_id": null,
    "name": "San Marco platform",
    "description": null,
    "info_url": null,
    "wiki_url": "https://en.wikipedia.org/wiki/Broglio_Space_Center",
    "map_url": "https://www.google.com/maps?q=-2.9383333,40.210306",
    "latitude": "-2.9383333",
    "longitude": "40.210306",
    "location": {
        "id": 151,
        "url": "https://ll.thespacedevs.com/2.2.0/location/151/?format=api",
        "name": "Broglio Space Center, Kenya",
        "country_code": "ITA",
        "description": "The Luigi Broglio Space Center (BSC) located near Malindi, Kenya, is an Italian Space Agency (ASI) Spaceport. It served as a spaceport for the launch of both Italian and international satellites, but is currently only used for satellite communications.",
        "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_151_20200803142409.jpg",
        "timezone_name": "Africa/Nairobi",
        "total_launch_count": 9,
        "total_landing_count": 0
    },
    "country_code": "ITA",
    "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/pad_155_20200803143349.jpg",
    "total_launch_count": 9,
    "orbital_launch_attempt_count": 9
}