← Entertainment

Star Wars Person Detail

GET /starwars/people/:id

Get detailed information about a specific Star Wars character by their SWAPI ID. Returns the character's name, birth year, height, mass, hair color, skin color, eye color, gender, homeworld details, and a list of films they appear in. Use this for building character profile pages, Star Wars databases, and detailed character cards in fan applications.

Parameters

id required

SWAPI person ID

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/starwars/people/1
Luke Skywalker (ID 1)
curl https://nordapi.ee/api/v1/starwars/people/1
Darth Vader (ID 4)
curl https://nordapi.ee/api/v1/starwars/people/4
Leia Organa (ID 5)
curl https://nordapi.ee/api/v1/starwars/people/5

Live Response

{
  "data": {
    "birth_year": "19BBY",
    "eye_color": "blue",
    "films_count": 4,
    "gender": "male",
    "hair_color": "blond",
    "height": "172",
    "homeworld": "https://swapi.dev/api/planets/1/",
    "mass": "77",
    "name": "Luke Skywalker"
  },
  "success": true
}