Create your project & keys
Create a frontend-first backend with collections, app users, logs, and automations. Use admin keys to seed data, magic-link app users to issue sessions, and fetch from the frontend—no backend code required.
Signed in already? Opening the dashboard takes you straight to your project and keys.
How to use ReqRes keys
Create your project & admin key
In the dashboard, create a project to namespace collections, app users, and logs. Generate an admin key for setup tasks and seeding data.
Invite an app user & fetch with sessions
Send a magic link, verify the token, and use the session token in your UI:
Authorization: Bearer APP_SESSION_TOKEN
GET
https://reqres.in/api/collections/tasks
curl -H "Authorization: Bearer APP_SESSION_TOKEN" \ https://reqres.in/api/collections/tasks
fetch('https://reqres.in/api/collections/tasks', {
headers: { 'Authorization': 'Bearer APP_SESSION_TOKEN' }
})
.then(res => res.json())
.then(console.log)
.catch(console.error)
- ✅ Collections as your JSON database
- ✅ Magic-link app users with scoped session tokens
- ✅ Logs and automations included on every project
Need production headroom?
When collections, app users, or automations grow, upgrade to Dev, Pro, or beyond for higher limits, longer logs, and team features.
See plans →