Back to catalog

Endpoint

RandomUser.me

Generate random users with names, photos, and addresses—handy for UI and form testing.

Random user personas

Dev & JSONNo API keyDefault GET

HTTP console

Example URL
https://randomuser.me/api/?nat=us,gb&results=2Provider documentation
Request

GET with results, nat, seed, gender, format=json.

GET /api/?results=3&nat=us
Response

{ results: User[], info }

{
  "results": [
    {
      "gender": "female",
      "name": { "first": "Jane", "last": "Doe" },
      "email": "jane.doe@example.com",
      "location": { "city": "Austin", "country": "United States" }
    }
  ],
  "info": { "seed": "abc", "results": 1, "page": 1, "version": "1.4" }
}
Outbound requestProxy

Executes on the server with rate limits and host rules. Edit the URL and payload to match your scenario—responses show real upstream status and body (truncated if very large).

Upstream response

Ready. Click Send to execute the request. Status, latency, content type, and body appear here—formatted when the payload is JSON.