AN API endpoint that returns all Launch objects or a single launch.

EXAMPLE - /launch/[id]/ or /launch/?mode=list&search=SpaceX

GET Return a list of all Launch objects.

FILTERS Fields - 'name', 'id(s)', 'lsp__id', 'lsp__name', 'serial_number', 'launcher_config__id', 'rocket__spacecraftflight__spacecraft__name', 'is_crewed', 'include_suborbital', 'spacecraft_config__ids', 'related', 'location__ids', 'lsp__ids', 'pad__ids', 'status__ids'

MODE 'normal', 'list', 'detailed'

EXAMPLE ?mode=list

SEARCH Searches through the launch name, rocket name, launch agency, mission name & spacecraft name.

EXAMPLE - ?search=SpaceX

GET /2.2.0/launch/?format=api&offset=7850&ordering=name
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
  "count": 7851,
  "next": null,
  "previous": "https://ll.thespacedevs.com/2.2.0/launch/?format=api&limit=10&offset=7840&ordering=name",
  "results": [
    {
      "id": "163c666e-6c61-4e10-8110-6d3c33d965f6",
      "url": "https://ll.thespacedevs.com/2.2.0/launch/163c666e-6c61-4e10-8110-6d3c33d965f6/?format=api",
      "slug": "zhuque-3-demo-flight",
      "name": "Zhuque-3 | Demo Flight",
      "status": {
        "id": 3,
        "name": "Launch Successful",
        "abbrev": "Success",
        "description": "The launch vehicle successfully inserted its payload(s) into the target orbit(s)."
      },
      "last_updated": "2025-12-04T05:20:02Z",
      "net": "2025-12-03T04:00:00Z",
      "window_end": "2025-12-03T04:49:00Z",
      "window_start": "2025-12-03T03:52:00Z",
      "net_precision": {
        "id": 1,
        "name": "Minute",
        "abbrev": "MIN",
        "description": "The T-0 is accurate to the minute."
      },
      "probability": null,
      "weather_concerns": null,
      "holdreason": "",
      "failreason": "",
      "hashtag": null,
      "launch_service_provider": {
        "id": 259,
        "url": "https://ll.thespacedevs.com/2.2.0/agencies/259/?format=api",
        "name": "LandSpace",
        "type": "Commercial"
      },
      "rocket": {
        "id": 8821,
        "configuration": {
          "id": 539,
          "url": "https://ll.thespacedevs.com/2.2.0/config/launcher/539/?format=api",
          "name": "Zhuque-3",
          "family": "Zhuque",
          "full_name": "Zhuque-3",
          "variant": ""
        }
      },
      "mission": {
        "id": 7412,
        "name": "Demo Flight",
        "description": "First test launch of LandSpace’s ZQ-3 rocket, with a dummy payload. The rocket’s 1st stage attempted to land on a landing pad about 300 km downrange of the launch site.",
        "launch_designator": null,
        "type": "Test Flight",
        "orbit": {
          "id": 8,
          "name": "Low Earth Orbit",
          "abbrev": "LEO"
        },
        "agencies": [],
        "info_urls": [],
        "vid_urls": []
      },
      "pad": {
        "id": 243,
        "url": "https://ll.thespacedevs.com/2.2.0/pad/243/?format=api",
        "agency_id": 259,
        "name": "Launch Area 96B",
        "description": "",
        "info_url": null,
        "wiki_url": "https://en.wikipedia.org/wiki/Zhuque-3",
        "map_url": "https://www.google.com/maps?q=40.92017,100.25129",
        "latitude": "40.92017",
        "longitude": "100.25129",
        "location": {
          "id": 17,
          "url": "https://ll.thespacedevs.com/2.2.0/location/17/?format=api",
          "name": "Jiuquan Satellite Launch Center, People's Republic of China",
          "country_code": "CHN",
          "description": "Jiuquan Satellite Launch Center is a Chinese spaceport located between the Ejin, Alxa, Inner Mongolia and Hangtian Town, Jinta County, Jiuquan, Gansu Province. It is part of the Dongfeng Aerospace City (Base 10).",
          "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/location_17_20200803142429.jpg",
          "timezone_name": "Asia/Shanghai",
          "total_launch_count": 283,
          "total_landing_count": 2
        },
        "country_code": "CHN",
        "map_image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/map_images/pad_launch_area_96b_20251128220544.jpg",
        "total_launch_count": 1,
        "orbital_launch_attempt_count": 1
      },
      "webcast_live": false,
      "image": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/images/zq-3_flight_1_l_image_20251203064230.jpg",
      "infographic": null,
      "program": [],
      "orbital_launch_attempt_count": 7138,
      "location_launch_attempt_count": 267,
      "pad_launch_attempt_count": 1,
      "agency_launch_attempt_count": 8,
      "orbital_launch_attempt_count_year": 289,
      "location_launch_attempt_count_year": 28,
      "pad_launch_attempt_count_year": 1,
      "agency_launch_attempt_count_year": 3,
      "type": "normal"
    }
  ]
}