← Entertainment

Star Wars Starship Detail

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.

Parameters

id required

SWAPI starship ID

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/starwars/starships/9
Death Star (ID 9)
curl https://nordapi.ee/api/v1/starwars/starships/9
Millennium Falcon (ID 10)
curl https://nordapi.ee/api/v1/starwars/starships/10
X-wing (ID 12)
curl https://nordapi.ee/api/v1/starwars/starships/12

Live Response

{
  "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
}