GET /starwars/people/search
Search for Star Wars characters por nombre across the complete Star Wars universe database. Returns character nombres, birth years, heights, mass, hair and eye colors, homeworld, and film appearances. Data from SWAPI (Star Wars API) que cubre all characters from the original and prequel trilogies. Útil para Star Wars fan aplicaciones, trivia games, character encyclopedias, and sci-fi entertainment platforms.
q
requerido
Character name search query
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
q |
Si | - | Character name search query |
curl "https://nordapi.ee/api/v1/starwars/people/search?q=luke"
curl "https://nordapi.ee/api/v1/starwars/people/search?q=luke"
curl "https://nordapi.ee/api/v1/starwars/people/search?q=darth"
curl "https://nordapi.ee/api/v1/starwars/people/search?q=leia"
{
"data": [
{
"birth_year": "19BBY",
"gender": "male",
"height": "172",
"mass": "77",
"name": "Luke Skywalker"
}
],
"success": true,
"total": 1
}