GET /starwars/starships/:id
Obtenga detailed specifications para un/una específico/a Star Wars starship by its SWAPI ID. Devuelve the ship's name, model, manufacturer, cost in credits, length, crew size, passenger capacity, cargo capacity, consumables duration, hyperdrive rating, MGLT speed, and starship class. Útil para Star Wars technical databases, ship comparison tools, and sci-fi fleet management games.
id
requerido
SWAPI starship ID
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
id |
Si | - | SWAPI starship ID |
curl https://nordapi.ee/api/v1/starwars/starships/9
curl https://nordapi.ee/api/v1/starwars/starships/9
curl https://nordapi.ee/api/v1/starwars/starships/10
curl https://nordapi.ee/api/v1/starwars/starships/12
{
"data": {
"cost_in_credits": "1000000000000",
"crew": "342,953",
"hyperdrive_rating": "4.0",
"length": "120000",
"manufacturer": "Imperial Department of Military Research, Sienar Fleet Systems",
"max_speed": "n/a",
"model": "DS-1 Orbital Battle Station",
"name": "Death Star",
"passengers": "843,342",
"starship_class": "Deep Space Mobile Battlestation"
},
"success": true
}