GET

Get random user

Retrieve a random user with complete profile information

URL:https://randomuser.me/api/
Endpoint Information
Basic information about this API endpoint

GET

application/json

Sample Response
Example response from this endpoint
JSON Response
{
  "results": [
    {
      "gender": "female",
      "name": {
        "title": "Ms",
        "first": "Emma",
        "last": "Johnson"
      },
      "location": {
        "street": {
          "number": 1234,
          "name": "Main St"
        },
        "city": "New York",
        "state": "NY",
        "country": "United States",
        "postcode": "10001"
      },
      "email": "emma.johnson@example.com",
      "login": {
        "uuid": "12345678-1234-1234-1234-123456789012",
        "username": "emmaj123"
      },
      "dob": {
        "date": "1990-05-15T00:00:00.000Z",
        "age": 33
      },
      "phone": "(555) 123-4567",
      "picture": {
        "large": "https://randomuser.me/api/portraits/women/1.jpg",
        "medium": "https://randomuser.me/api/portraits/med/women/1.jpg",
        "thumbnail": "https://randomuser.me/api/portraits/thumb/women/1.jpg"
      }
    }
  ],
  "info": {
    "seed": "abc123",
    "results": 1,
    "page": 1,
    "version": "1.4"
  }
}