GET /starwars/starships/:id
Get detailed specifications for a specific Star Wars starship by its SWAPI ID. Returns 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. Useful for Star Wars technical databases, ship comparison tools, and sci-fi fleet management games.
id
required
SWAPI starship ID
| Name | Required | Default | Description |
|---|---|---|---|
id |
Yes | - | 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
}