Get Multiple Characters
GET
https://rickandmortyapi.com/api/character/1,183,39
Request
None
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://rickandmortyapi.com/api/character/1,183,39'
Responses
🟢200OK
application/json
Body
array of:
id
integer
required
name
string
required
status
string
required
species
string
required
type
string
required
gender
string
required
origin
object
required
name
string
required
url
string
required
location
object
required
name
string
required
url
string
required
image
string
required
episode
array[string]
required
url
string
required
created
string
required
Example
[
{
"id": 0,
"name": "string",
"status": "string",
"species": "string",
"type": "string",
"gender": "string",
"origin": {
"name": "string",
"url": "string"
},
"location": {
"name": "string",
"url": "string"
},
"image": "string",
"episode": [
"string"
],
"url": "string",
"created": "string"
}
]
Modified at 2024-04-08 20:11:10