Retrieves details of all SpaceX capsules.

https://api.spacexdata.com/v4/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.

https://api.spacexdata.com/v4/capsules/{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" },