The Characters endpoint gives you access to every character in the Rick and Morty universe — all 826+ of them. From the genius-level alcoholic scientist Rick Sanchez to the interdimensional cable TV hosts, they're all here.
Data model
Each character object contains the following fields:
| Field | Type | Description |
|---|---|---|
id | integer | Unique identifier |
name | string | Character name |
status | string | Alive, Dead, or unknown |
species | string | Species (e.g., Human, Alien, Robot) |
type | string | Sub-type or subspecies (can be empty) |
gender | string | Female, Male, Genderless, or unknown |
origin | object | { name, url } — the character's origin location |
location | object | { name, url } — the character's last known location |
image | string | URL to the character's image (300x300px) |
episode | array | List of episode URLs the character appears in |
url | string | URL to the character's own endpoint |
created | string | ISO 8601 timestamp when the record was created |
Get all characters
Code
Returns a paginated list of all characters (20 per page).
Get a single character
Code
Get multiple characters
Request multiple characters by ID in a single call:
Code
Filtering
Filter characters using query parameters. All filters are case-insensitive and use partial matching for string fields.
| Parameter | Type | Example Values |
|---|---|---|
name | string | rick, morty, pickle |
status | string | alive, dead, unknown |
species | string | human, alien, robot |
type | string | parasite, robot |
gender | string | female, male, genderless, unknown |
Filter examples
Code
Code
Code
Combine multiple filters to narrow your search. The API returns all characters that match all provided filters.
Notable characters
Here are some fan favorites to get you started:
| ID | Name | Species | Status |
|---|---|---|---|
| 1 | Rick Sanchez | Human | Alive |
| 2 | Morty Smith | Human | Alive |
| 3 | Summer Smith | Human | Alive |
| 118 | Evil Morty | Human | Alive |
| 265 | Pickle Rick | Alien | Alive |
| 244 | Mr. Poopybutthole | Unknown | Alive |
Next steps
- Locations Guide — where do these characters live?
- Episodes Guide — which episodes do they appear in?
- API Reference — try the Characters endpoints interactively
Last modified on
