Get all characters
To get a list of all characters from Rick and Morty API, construct your query like this:
curl -X POST \ -H 'Content-Type: application/json' \ -d '{"query": "query GetAllCharacters { characters { results { id name status species type gender origin { name } location { name } image episode { id name air_date episode created } created } } }"}' \ https://rickandmortyapi.com/graphql
The results will be a JSON object containing a results array. You can see an example of this below:
{ "data": { "characters": { "results": [ { "id": "1", "name": "Rick Sanchez", "status": "Alive", "species": "Human", "type": "", "gender": "Male", "origin": { "name": "Earth (C-137)" }, "location": { "name": "Citadel of Ricks" }, "image": "https://rickandmortyapi.com/api/character/avatar/1.jpeg", "episode": [ { "id": "1", "name": "Pilot", "air_date": "December 2, 2013", "episode": "S01E01", "created": "2017-11-10T12:56:33.798Z" } ] } ] } }}
Customise the result
You can customise the resulting Json array by passing the following parameters:
-
name
Filter by the given name.
-
status
Filter by the given status (alive, dead or unknown).
-
species
Filter by the given species.
-
type
Filter by the given type.
-
gender
Filter by the given gender (
female
,male
,genderless
orunknown
).
For example, to get only characters named “Rick”, you can use customise the name
parameter like this:
curl -X POST \ -H 'Content-Type: application/json' \ -d '{ "query": "query GetAllCharacters { characters(filter:{name:\"Rick\"}) { results { id name status species type gender origin { name } location { name } image episode { id name air_date episode created } created } } }" }' \ https://rickandmortyapi.com/graphql