GET /starwars/people/search
Suchen Sie nach Star Wars characters by name across the complete Star Wars universe database. Liefert character names, birth years, heights, mass, hair und eye colors, homeworld, und film appearances. Daten von SWAPI (Star Wars API) covering all characters from the original und prequel trilogies. Nützlich für Star Wars fan apps, trivia games, character encyclopedias, und sci-fi entertainment platforms.
q
erforderlich
Character name search query
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
q |
Ja | - | 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
}