Get up and running with the Rick and Morty API in a few quick steps. You'll need an API key to authenticate your requests — no portal gun required.
1. Create an account
Click the Sign In button in the top navigation to create an account via Auth0. You can sign up with your email or use a social login.
2. Choose a plan
Once signed in, head to the API Reference and subscribe to a plan:
| Plan | Rate Limit | Best For |
|---|---|---|
| Dimension C-137 (Free) | 100 requests/min | Exploring the API, hobby projects |
| Cronenberg (Paid) | 1,000 requests/min | Apps and integrations |
| Pickle Rick (Paid) | 10,000 requests/min | Production workloads, interdimensional scale |
Want to test a paid plan? Use the test card number 4242 4242 4242 4242 with any future expiry date and any CVC.
3. Get your API key
After subscribing, your API key will be available in the Developer Portal. Copy it — you'll include it as a Bearer token in every request.
4. Make your first request
Replace YOUR_API_KEY with the key from your dashboard:
Code
You should get back Rick Sanchez:
Code
All requests require a valid API key sent as a Bearer token in the Authorization header. Requests without a valid key will return a 401 Unauthorized response.
Base URL
All API endpoints are served from:
Code
Pagination
List endpoints return paginated results with 20 items per page. The response includes an info object with pagination metadata:
Code
Use the page query parameter to navigate: ?page=2, ?page=3, etc.
Next steps
- Characters Guide — explore character data and filtering
- Locations Guide — browse the multiverse
- Episodes Guide — find episodes and their casts
- API Reference — full interactive API documentation
