← Entertainment

Star Wars People Search

GET /starwars/people/search

Search for Star Wars characters by name across the complete Star Wars universe database. Returns character names, birth years, heights, mass, hair and eye colors, homeworld, and film appearances. Data from SWAPI (Star Wars API) covering all characters from the original and prequel trilogies. Useful for Star Wars fan apps, trivia games, character encyclopedias, and sci-fi entertainment platforms.

Parameters

q required

Character name search query

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/starwars/people/search?q=luke"
Search for Luke
curl "https://nordapi.ee/api/v1/starwars/people/search?q=luke"
Search for Darth
curl "https://nordapi.ee/api/v1/starwars/people/search?q=darth"
Search for Leia
curl "https://nordapi.ee/api/v1/starwars/people/search?q=leia"

Live Response

{
  "data": [
    {
      "birth_year": "19BBY",
      "gender": "male",
      "height": "172",
      "mass": "77",
      "name": "Luke Skywalker"
    }
  ],
  "success": true,
  "total": 1
}