← Underhållning

Star Wars rymdskepp-detaljer

GET /starwars/starships/:id

Get detaljerad specifications for a specifik Star Wars starship by dess SWAPI ID. Returnerar the ship's namn, model, manufacturer, cost in credits, length, crew size, passenger capacity, cargo capacity, consumables duration, hyperdrive rating, MGLT speed, and starship class. Användbart för Star Wars technical databaser, ship jämförelse verktyg, and sci-fi fleet hantering spel.

Parametrar

id obligatorisk

SWAPI starship ID

Exempelförfrågningar

Grundläggande användning
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

Livesvar

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