Retrieves details of all SpaceX capsules.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"reuse_count": 0,
"water_landings": 1,
"land_landings": 0,
"last_update": "Hanging in atrium at SpaceX HQ in Hawthorne ",
"launches": [
"5eb87cdeffd86e000604b330"
],
"serial": "C101",
"status": "retired",
"type": "Dragon 1.0",
"id": "5e9e2c5bf35918ed873b2664"
},
Retrieves details of a specific SpaceX capsule by its ID.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"reuse_count": 0,
"water_landings": 1,
"land_landings": 0,
"last_update": "Hanging in atrium at SpaceX HQ in Hawthorne ",
"launches": [
"5eb87cdeffd86e000604b330"
],
"serial": "C101",
"status": "retired",
"type": "Dragon 1.0",
"id": "5e9e2c5bf35918ed873b2664"
},