📅  最后修改于: 2023-12-03 15:31:19.809000             🧑  作者: Mango
SWAPI是一个网络公共API,提供了与星球大战电影宇宙中相关内容有关的信息。这包括电影、人物、行星、飞船、车辆和其他星球大战宇宙的元素。
API的基本URL为 https://swapi.dev/api/ 。
本次介绍的主题是SWAPI API中的人物信息API。人物信息API提供了有关星球大战电影宇宙中所有人物的信息。
人物信息API的基本URL为 https://swapi.dev/api/people/ 。
发送一个 HTTP GET 请求到人物信息API的基本URL,即可获取所有人物的信息。HTTP响应将包含一个JSON对象,其中包含所有人物的详细信息。
以下是示例响应:
{
"count": 87,
"next": "https://swapi.dev/api/people/?page=2",
"previous": null,
"results": [
{
"name": "Luke Skywalker",
"height": "172",
"mass": "77",
"hair_color": "blond",
"skin_color": "fair",
"eye_color": "blue",
"birth_year": "19BBY",
"gender": "male",
"homeworld": "https://swapi.dev/api/planets/1/",
"films": [
"https://swapi.dev/api/films/1/",
"https://swapi.dev/api/films/2/",
"https://swapi.dev/api/films/3/",
"https://swapi.dev/api/films/6/"
],
"species": [
"https://swapi.dev/api/species/1/"
],
"vehicles": [
"https://swapi.dev/api/vehicles/14/",
"https://swapi.dev/api/vehicles/30/"
],
"starships": [
"https://swapi.dev/api/starships/12/",
"https://swapi.dev/api/starships/22/"
],
"created": "2014-12-09T13:50:51.644000Z",
"edited": "2014-12-20T21:17:56.891000Z",
"url": "https://swapi.dev/api/people/1/"
},
//...
]
}
以上就是SWAPI API中人物信息API的介绍。希望对使用SWAPI API的开发者们有所帮助!