Test Data · head-to-head
ItsThisForThat vs RandomUser
ItsThisForThat is a single-endpoint novelty generator that mashes two random tech buzzwords into a startup-style "X for Y" pitch (e.g. "Google Analytics for Pandas"), served from a PHP script that's been running unchanged since at least 2018. The same api.php endpoint supports three output modes via query string — ?json for JSON, ?call=name for a JSONP callback, and ?text for a plain sentence — with no key, signup, or documented rate limit. There's no CORS header on any response, so browser code needs a same-origin proxy even though the endpoint itself is fully public.
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.
| ItsThisForThat | RandomUser | |
|---|---|---|
| Authentication | None | None |
| Pricing | free | free |
| Formats | JSON, Text | JSON, XML, CSV, YAML |
| CORS | no | yes |
| HTTPS | Yes | Yes |
RandomUser supports CORS, while ItsThisForThat doesn't — pick RandomUser for direct browser calls.