Endpoint: character
GEThttps://rickandmorty.mimo.dev/api/character/7
Request
GETcharacter
1fetch("https://rickandmorty.mimo.dev/api/character/7")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))
Response
response.json
1{
2 "id": 7,
3 "name": "Abradolf Lincler",
4 "status": "unknown",
5 "species": "Human",
6 "type": "Genetic experiment",
7 "gender": "Male",
8 "origin": {
9 "name": "Earth (Replacement Dimension)",
10 "url": "https://rickandmorty.mimo.dev/api/location/20"
11 },
12 "location": {
13 "name": "Testicle Monster Dimension",
14 "url": "https://rickandmorty.mimo.dev/api/location/21"
15 },
16 "image": "https://raw.githubusercontent.com/getmimo/things-api/main/files/rickandmorty/character/avatar/7.jpeg",
17 "episode": [
18 "https://rickandmorty.mimo.dev/api/episode/10",
19 "https://rickandmorty.mimo.dev/api/episode/11"
20 ],
21 "url": "https://rickandmorty.mimo.dev/api/character/7",
22 "created": "2017-11-04T19:59:20.523Z"
23}