ReqRes Alternative — Real Auth, Real Persistence

ReqRes is great for a five-minute Postman demo, but its login is hard-coded and writes are simulated. This sandbox runs real JWT and OAuth2 flows, persists your data per session, and exposes the same data over GraphQL and SOAP.

How they compare

FeatureReqResTotalShiftLeft Sandbox
Free, no signupYesYes
GET endpoints with paginated listsYesYes
Login returns a real JWTNo (static token string)Yes (signed JWT with claims)
OAuth2 client-credentials flowNoYes
Refresh tokensNoYes
POST / PATCH / DELETE persistNoYes (session-scoped)
GraphQL on same dataNoYes
SOAP on same dataNoYes
OpenAPI 3.0 specNoYes
Configurable error / latency simulationLimited (?delay=)Yes (error, delay, random_fail)

Why this matters for testing auth

ReqRes returns the literal string "QpwL5tke4Pnpja7X4" for every "login" — useful for screenshots, useless for actually testing your client's token-refresh logic, expiration handling, role-based access, or 401 / 403 differentiation.

This sandbox issues a real signed JWT with a real exp, supports refresh-token rotation, and has admin / user roles so you can exercise authorization decisions properly.

Quick swap example

# ReqRes
POST https://reqres.in/api/login
{ "email": "eve.holt@reqres.in", "password": "cityslicka" }

# This sandbox (returns a real signed JWT)
POST https://demo.totalshiftleft.ai/auth/token
{ "username": "demo", "password": "demo" }

Frequently asked questions

Can I still get fake "delay" behavior like ReqRes?

Yes — append ?delay=2000 to any endpoint for a 2-second artificial latency.

Are the JWTs verifiable?

Yes — they are HS256-signed. The signing secret is intentionally exposed in /auth so you can also fully decode and re-sign locally for negative tests.

Other free public APIs in this sandbox

Ready to try it?

Open the live sandbox — REST, GraphQL, SOAP and auth in one place. No signup, no API key.

Open the API Sandbox →

Topics: ReqRes alternative · reqres.in alternative · free API like ReqRes · ReqRes with real auth · public API for testing login flows