← Entertainment

Star Wars Planet Search

GET /starwars/planets/search

Search for planets in the Star Wars universe by name. Returns planet names, climate, terrain, population, gravity, orbital period, rotation period, and diameter. Data from SWAPI covering all canonical Star Wars planets from the films. Useful for worldbuilding references, Star Wars geography explorers, and sci-fi trivia applications.

Parameters

q required

Planet name search query

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/starwars/planets/search?q=tatooine"
Search for Tatooine
curl "https://nordapi.ee/api/v1/starwars/planets/search?q=tatooine"
Search for Hoth
curl "https://nordapi.ee/api/v1/starwars/planets/search?q=hoth"
Search for Naboo
curl "https://nordapi.ee/api/v1/starwars/planets/search?q=naboo"

Live Response

{
  "data": [
    {
      "climate": "arid",
      "name": "Tatooine",
      "population": "200000",
      "terrain": "desert"
    }
  ],
  "success": true,
  "total": 1
}