Test Data · head-to-head
RandomUser vs TotalShiftLeft Sandbox
RandomUser (the Random User Generator) is a free, open-source API that returns one or more fully-formed fake user profiles — name, address, email, login credentials, and photo — as JSON, XML, CSV, or YAML depending on the format query parameter. Requests can be tuned with parameters for results count, gender, nationality, and a seed value that makes the "random" output reproducible across calls. It has no authentication and no key-based rate limit, making it a common stand-in for Lorem Ipsum-style placeholder people in demos and test fixtures.
TotalShiftLeft's Sandbox (self-titled "API Learning Sandbox") is a free hands-on playground for practicing REST, GraphQL, and SOAP against the same underlying data store — a session is auto-created on first request (no signup) and seeded with demo users, products, and orders that expire after 30 minutes. Beyond plain access, it supports three optional auth flows for testing auth code paths: an x-api-key header, a JWT obtained from POST /auth/token, and an OAuth2 client-credentials exchange at POST /auth/oauth. Query params let callers simulate real-world conditions — added latency, forced error codes, or random failures — making it a fixture for testing API client resilience rather than just CRUD happy paths.
| RandomUser | TotalShiftLeft Sandbox | |
|---|---|---|
| Authentication | None | None |
| Pricing | free | free |
| Formats | JSON, XML, CSV, YAML | JSON, GraphQL, XML |
| CORS | yes | no |
| HTTPS | Yes | Yes |
RandomUser supports CORS, while TotalShiftLeft Sandbox doesn't — pick RandomUser for direct browser calls.