characters

Get character people.

This endpoint will retrieve the people of a specific character.

get/characters/{characterID}/people

Path parameters

characterIDinteger required

ID of the character.

Response

Successful GET Characters People JSON response

object required

Example response

{
  "data": [
    {
      "id": 1,
      "type": "people",
      "href": "/v1/people/1",
      "attributes": {
        "firstName": "Aniyah",
        "lastName": "Waelchi",
        "occupation": "Government Property Inspector",
        "imageURL": "https://lorempixel.com/640/480/?66477"
      }
    }
  ]
}

Changes