Create your API key
Generate a workspace key in the ReqRes app to unlock all core
endpoints. Every request now includes your key in the
x-api-key headerβno shared keys, higher trust.
Signed in already? Opening the dashboard takes you straight to your keys.
How to Use
1
Create your API key
Go to the ReqRes app and generate a workspace key.
2
Call any endpoint
Add the header below:
x-api-key: YOUR_API_KEY
GET https://reqres.in/api/users
curl -H "x-api-key: YOUR_API_KEY" \ https://reqres.in/api/users
fetch('https://reqres.in/api/users', {
headers: { 'x-api-key': 'YOUR_API_KEY' }
})
.then(res => res.json())
.then(console.log)
.catch(console.error)
- β Ready-to-use fake data for UI flows
- β Clean separation per workspace
- β Upgrade anytime for persistence & limits
Need More Power?
Hitting 100+ requests/day? Upgrade to Pro for unlimited requests, custom endpoints, and advanced features.
Go Pro β