参考网址

Random User Generator | Home

背景

在日常开发过程中,可能需要一些批量的用户数据,方便开发与测试。

Random User是一个基于Web 的api服务

网址:https://randomuser.me

 从网址上就能理解,它是用来帮我们生成用户信息的。

简单使用

调用api

https://randomuser.me/api/

在浏览器上输入url,并打开

 开发测试数据-通过API批量生成_python

开发测试数据-通过API批量生成_git_02开发测试数据-通过API批量生成_5e_03
{
    "results": [{
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "Tilde",
            "last": "Petersen"
        },
        "location": {
            "street": {
                "number": 8318,
                "name": "Kirkebakken"
            },
            "city": "Lemvig",
            "state": "Sjælland",
            "country": "Denmark",
            "postcode": 50849,
            "coordinates": {
                "latitude": "-34.1827",
                "longitude": "137.6308"
            },
            "timezone": {
                "offset": "-8:00",
                "description": "Pacific Time (US & Canada)"
            }
        },
        "email": "tilde.petersen@example.com",
        "login": {
            "uuid": "fcc2d67b-7d8f-42b6-88af-defe45d7000b",
            "username": "whiteswan915",
            "password": "passion",
            "salt": "2H0kQxHI",
            "md5": "72caa139078114cf132c550ffb570a45",
            "sha1": "32fd9aeeff2048a652ec0a7c3f615b88a844b493",
            "sha256": "3780104e9ee8ab6c6a16ee95b99aa9c24ba666f42c2417bfad4e118850469df2"
        },
        "dob": {
            "date": "1998-01-21T06:47:48.526Z",
            "age": 23
        },
        "registered": {
            "date": "2017-07-26T18:22:10.588Z",
            "age": 4
        },
        "phone": "38400064",
        "cell": "81108424",
        "id": {
            "name": "CPR",
            "value": "210198-6685"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/27.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/27.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/27.jpg"
        },
        "nat": "DK"
    }],
    "info": {
        "seed": "072ef5473530b525",
        "results": 1,
        "page": 1,
        "version": "1.3"
    }
}
View Code

获取多个用户数据

默认是一个,要想获得多个用户数据,需要加上参数

result=[num]

例如:

https://randomuser.me/api/?results=5

开发测试数据-通过API批量生成_f5_04

开发测试数据-通过API批量生成_git_02开发测试数据-通过API批量生成_5e_03
{
    "results": [{
        "gender": "male",
        "name": {
            "title": "Mr",
            "first": "Tyler",
            "last": "Day"
        },
        "location": {
            "street": {
                "number": 5487,
                "name": "Nowlin Rd"
            },
            "city": "Gladstone",
            "state": "Queensland",
            "country": "Australia",
            "postcode": 6425,
            "coordinates": {
                "latitude": "-88.8425",
                "longitude": "-176.8110"
            },
            "timezone": {
                "offset": "-8:00",
                "description": "Pacific Time (US & Canada)"
            }
        },
        "email": "tyler.day@example.com",
        "login": {
            "uuid": "f3288663-248b-40b1-8e62-dc34cb90dfba",
            "username": "happycat858",
            "password": "tigers",
            "salt": "isISaSeW",
            "md5": "c9615397692029e75eb5689e08f28c98",
            "sha1": "e765869b24cad1f5eb43af736fdc94673716565e",
            "sha256": "c9187858e768ce7d7190df5dc1e378152a9cdd9f161e311c9dc574db0e0a2eaf"
        },
        "dob": {
            "date": "1985-06-22T07:43:07.898Z",
            "age": 36
        },
        "registered": {
            "date": "2005-10-21T16:26:16.194Z",
            "age": 16
        },
        "phone": "07-6508-9663",
        "cell": "0447-236-528",
        "id": {
            "name": "TFN",
            "value": "305352099"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/men/29.jpg",
            "medium": "https://randomuser.me/api/portraits/med/men/29.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/men/29.jpg"
        },
        "nat": "AU"
    }, {
        "gender": "male",
        "name": {
            "title": "Mr",
            "first": "Erique",
            "last": "Ramos"
        },
        "location": {
            "street": {
                "number": 2427,
                "name": "Rua Paraná "
            },
            "city": "Corumbá",
            "state": "Mato Grosso",
            "country": "Brazil",
            "postcode": 66605,
            "coordinates": {
                "latitude": "-34.4406",
                "longitude": "-10.3198"
            },
            "timezone": {
                "offset": "+7:00",
                "description": "Bangkok, Hanoi, Jakarta"
            }
        },
        "email": "erique.ramos@example.com",
        "login": {
            "uuid": "b45a93d5-0858-431e-aa11-5dd3746aa368",
            "username": "yellowfish417",
            "password": "pressure",
            "salt": "NpyFmsPt",
            "md5": "ea719424c8a40a9c100672bc9d63f468",
            "sha1": "1641593df865e2e852a829fa031ebe822a5ba76c",
            "sha256": "2c386b46f332959332a02a9c61cffd442f4dd0c058d5ad6f8bd39081b2013272"
        },
        "dob": {
            "date": "1959-06-16T14:50:16.957Z",
            "age": 62
        },
        "registered": {
            "date": "2010-05-27T06:46:06.128Z",
            "age": 11
        },
        "phone": "(96) 6463-3144",
        "cell": "(12) 6911-1925",
        "id": {
            "name": "",
            "value": null
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/men/79.jpg",
            "medium": "https://randomuser.me/api/portraits/med/men/79.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/men/79.jpg"
        },
        "nat": "BR"
    }, {
        "gender": "male",
        "name": {
            "title": "Mr",
            "first": "Mathias",
            "last": "Olsen"
        },
        "location": {
            "street": {
                "number": 2113,
                "name": "Rypevej"
            },
            "city": "Kvistgaard",
            "state": "Nordjylland",
            "country": "Denmark",
            "postcode": 71740,
            "coordinates": {
                "latitude": "-55.0795",
                "longitude": "-72.1922"
            },
            "timezone": {
                "offset": "-8:00",
                "description": "Pacific Time (US & Canada)"
            }
        },
        "email": "mathias.olsen@example.com",
        "login": {
            "uuid": "a5bf4547-cfaa-46a4-8377-24af232e3850",
            "username": "organicpanda228",
            "password": "1215",
            "salt": "XHMOcCmj",
            "md5": "6795b3cda59327742f12ac645d27ec96",
            "sha1": "9731ac7e188179dbc83f99faf628dfe864acf47a",
            "sha256": "ba8597aa56351284eb4e9264b95dfb215667cb3a8bfc469781245f254e46c3b9"
        },
        "dob": {
            "date": "1989-03-19T12:30:16.872Z",
            "age": 32
        },
        "registered": {
            "date": "2013-12-13T04:08:04.259Z",
            "age": 8
        },
        "phone": "55430896",
        "cell": "67029580",
        "id": {
            "name": "CPR",
            "value": "190389-7286"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/men/16.jpg",
            "medium": "https://randomuser.me/api/portraits/med/men/16.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/men/16.jpg"
        },
        "nat": "DK"
    }, {
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "Emilia",
            "last": "Karjala"
        },
        "location": {
            "street": {
                "number": 4240,
                "name": "Rotuaari"
            },
            "city": "Punkaharju",
            "state": "Southern Savonia",
            "country": "Finland",
            "postcode": 22728,
            "coordinates": {
                "latitude": "18.9856",
                "longitude": "59.1125"
            },
            "timezone": {
                "offset": "-12:00",
                "description": "Eniwetok, Kwajalein"
            }
        },
        "email": "emilia.karjala@example.com",
        "login": {
            "uuid": "23a6aac8-9a07-4320-9b2d-a289751efaab",
            "username": "orangedog302",
            "password": "mothers",
            "salt": "6MKnQbfT",
            "md5": "584eb3f052f1096414407c9045bc8036",
            "sha1": "93287145c27c73a6a2f7abc63b51bb310095e3a1",
            "sha256": "42b6ee89413547f82137ccf542fd3f7eff1c78b1f83078bf241151c5d1e901ae"
        },
        "dob": {
            "date": "1978-04-09T01:35:50.896Z",
            "age": 43
        },
        "registered": {
            "date": "2006-07-20T07:41:56.363Z",
            "age": 15
        },
        "phone": "05-833-009",
        "cell": "044-950-36-36",
        "id": {
            "name": "HETU",
            "value": "NaNNA238undefined"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/81.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/81.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/81.jpg"
        },
        "nat": "FI"
    }, {
        "gender": "male",
        "name": {
            "title": "Mr",
            "first": "Abbas",
            "last": "Eie"
        },
        "location": {
            "street": {
                "number": 2370,
                "name": "Kommandør T. I. Øgrims plass"
            },
            "city": "Alshus",
            "state": "Vest-Agder",
            "country": "Norway",
            "postcode": "1071",
            "coordinates": {
                "latitude": "-72.0541",
                "longitude": "-97.5596"
            },
            "timezone": {
                "offset": "0:00",
                "description": "Western Europe Time, London, Lisbon, Casablanca"
            }
        },
        "email": "abbas.eie@example.com",
        "login": {
            "uuid": "f8d1c4ea-6a34-4c06-bad2-ea93b01b9823",
            "username": "heavyzebra625",
            "password": "goodman",
            "salt": "TA2hTqK5",
            "md5": "bb0db204857393e17d7e09d5bde4368f",
            "sha1": "9bc5aff73baed8f42d4c8dc8ac259d40ff9dc163",
            "sha256": "da8b7e215172f0e69744de4d82887c181174d7d1a6529de9b8b43db0837945e5"
        },
        "dob": {
            "date": "1982-01-06T02:12:34.366Z",
            "age": 39
        },
        "registered": {
            "date": "2017-07-14T21:26:44.171Z",
            "age": 4
        },
        "phone": "87936159",
        "cell": "95812121",
        "id": {
            "name": "FN",
            "value": "06018205988"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/men/9.jpg",
            "medium": "https://randomuser.me/api/portraits/med/men/9.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/men/9.jpg"
        },
        "nat": "NO"
    }],
    "info": {
        "seed": "8d5239689b67262a",
        "results": 5,
        "page": 1,
        "version": "1.3"
    }
}
View Code

指定某个国家的数据

有时候会发现有些姓名是其他国家的语言,为了方便可以添加参数来选择想要的国家语言

  • v1.0: AU, BR, CA, CH, DE, DK, ES, FI, FR, GB, IE, IR, NL, NZ, TR, US
  • v1.1: AU, BR, CA, CH, DE, DK, ES, FI, FR, GB, IE, IR, NL, NZ, TR, US
  • v1.2: AU, BR, CA, CH, DE, DK, ES, FI, FR, GB, IE, IR, NO, NL, NZ, TR, US
  • v1.3: AU, BR, CA, CH, DE, DK, ES, FI, FR, GB, IE, IR, NO, NL, NZ, TR, US

nat=[country]

例如:

https://randomuser.me/api/?results=5&nat=us

或者多个国家

https://randomuser.me/api/?results=5&nat=us,dk,fr,gb

开发测试数据-通过API批量生成_git_07

开发测试数据-通过API批量生成_git_02开发测试数据-通过API批量生成_5e_03
{
    "results": [{
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "Patsy",
            "last": "Chapman"
        },
        "location": {
            "street": {
                "number": 6836,
                "name": "Railroad St"
            },
            "city": "El Paso",
            "state": "Colorado",
            "country": "United States",
            "postcode": 66303,
            "coordinates": {
                "latitude": "42.2214",
                "longitude": "161.9552"
            },
            "timezone": {
                "offset": "-3:00",
                "description": "Brazil, Buenos Aires, Georgetown"
            }
        },
        "email": "patsy.chapman@example.com",
        "login": {
            "uuid": "c2b5aa41-ab28-439e-9d8a-b96c198e445b",
            "username": "purplepeacock654",
            "password": "kelvin",
            "salt": "UiGnK52Z",
            "md5": "a9926a7799112806d665d0402c8e759a",
            "sha1": "63b803ce82acb7423a0497c85bb9a0c4114ada99",
            "sha256": "3bdd7d78dc596dff9ac3ca58a6177ab65e9c32883b52c122f866c679f7cc7771"
        },
        "dob": {
            "date": "1967-08-16T13:58:09.599Z",
            "age": 54
        },
        "registered": {
            "date": "2016-04-02T12:09:57.877Z",
            "age": 5
        },
        "phone": "(559)-223-7467",
        "cell": "(032)-019-5325",
        "id": {
            "name": "SSN",
            "value": "283-37-1346"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/11.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/11.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/11.jpg"
        },
        "nat": "US"
    }, {
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "April",
            "last": "Miller"
        },
        "location": {
            "street": {
                "number": 1116,
                "name": "Bollinger Rd"
            },
            "city": "Baltimore",
            "state": "Louisiana",
            "country": "United States",
            "postcode": 57539,
            "coordinates": {
                "latitude": "-9.2794",
                "longitude": "54.9624"
            },
            "timezone": {
                "offset": "+5:45",
                "description": "Kathmandu"
            }
        },
        "email": "april.miller@example.com",
        "login": {
            "uuid": "c05311e8-5383-4d45-8256-9ec19db10158",
            "username": "smallladybug297",
            "password": "lady",
            "salt": "8BZg6Ksk",
            "md5": "fe147f0d54a3e6f434e82c3a552ec509",
            "sha1": "375581c90270f40febdbaec4d49f515fc0c9584c",
            "sha256": "ba6ee0a91b0d889a504d6f6a79d175f8200d713f01971c10c227420922fc7e5f"
        },
        "dob": {
            "date": "1947-10-11T07:48:37.725Z",
            "age": 74
        },
        "registered": {
            "date": "2004-05-06T19:35:39.044Z",
            "age": 17
        },
        "phone": "(769)-811-1098",
        "cell": "(200)-677-8946",
        "id": {
            "name": "SSN",
            "value": "381-44-6457"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/19.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/19.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/19.jpg"
        },
        "nat": "US"
    }, {
        "gender": "male",
        "name": {
            "title": "Mr",
            "first": "Kevin",
            "last": "Hale"
        },
        "location": {
            "street": {
                "number": 9282,
                "name": "Adams St"
            },
            "city": "Frisco",
            "state": "North Carolina",
            "country": "United States",
            "postcode": 68705,
            "coordinates": {
                "latitude": "81.5178",
                "longitude": "-17.6465"
            },
            "timezone": {
                "offset": "-2:00",
                "description": "Mid-Atlantic"
            }
        },
        "email": "kevin.hale@example.com",
        "login": {
            "uuid": "d1e9428d-7301-43c9-ae22-21ee400accde",
            "username": "organicmeercat747",
            "password": "kirk",
            "salt": "8uozdQWb",
            "md5": "f890c2f4d4e3e6c68b13c0c389a14c59",
            "sha1": "bba1d0fd02e0d0a14f04ffabef15cfcf9956a35b",
            "sha256": "40472acc7ca0c86cf1e3f9f833b86450f0e43d98e213350d965ebbd94acc29f0"
        },
        "dob": {
            "date": "1993-10-19T11:32:50.686Z",
            "age": 28
        },
        "registered": {
            "date": "2017-08-07T04:22:23.752Z",
            "age": 4
        },
        "phone": "(524)-977-1844",
        "cell": "(184)-352-9260",
        "id": {
            "name": "SSN",
            "value": "706-78-1125"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/men/69.jpg",
            "medium": "https://randomuser.me/api/portraits/med/men/69.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/men/69.jpg"
        },
        "nat": "US"
    }, {
        "gender": "female",
        "name": {
            "title": "Mrs",
            "first": "Allison",
            "last": "Watkins"
        },
        "location": {
            "street": {
                "number": 6641,
                "name": "Saddle Dr"
            },
            "city": "Irvine",
            "state": "Iowa",
            "country": "United States",
            "postcode": 18388,
            "coordinates": {
                "latitude": "-14.8828",
                "longitude": "37.0271"
            },
            "timezone": {
                "offset": "+9:00",
                "description": "Tokyo, Seoul, Osaka, Sapporo, Yakutsk"
            }
        },
        "email": "allison.watkins@example.com",
        "login": {
            "uuid": "6e266a78-bd49-456e-85aa-f5360ac0899b",
            "username": "purpleswan604",
            "password": "buddie",
            "salt": "4HumiHS6",
            "md5": "1ad8edbb3fc30c361d651d1aba20dfe2",
            "sha1": "79a2f848a4ea3336a5d13d0d5ea3f5a65f2d964c",
            "sha256": "69a4209d4d3a5da64bca786cb0b3d71d81b80c573e3b3e50d8afa366cb5f2d0d"
        },
        "dob": {
            "date": "1988-11-08T22:32:15.364Z",
            "age": 33
        },
        "registered": {
            "date": "2018-05-10T14:57:52.489Z",
            "age": 3
        },
        "phone": "(225)-044-2775",
        "cell": "(295)-581-7680",
        "id": {
            "name": "SSN",
            "value": "773-06-8071"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/90.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/90.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/90.jpg"
        },
        "nat": "US"
    }, {
        "gender": "male",
        "name": {
            "title": "Mr",
            "first": "Curtis",
            "last": "Taylor"
        },
        "location": {
            "street": {
                "number": 5558,
                "name": "Cackson St"
            },
            "city": "Edison",
            "state": "Illinois",
            "country": "United States",
            "postcode": 12050,
            "coordinates": {
                "latitude": "73.5348",
                "longitude": "136.1238"
            },
            "timezone": {
                "offset": "+2:00",
                "description": "Kaliningrad, South Africa"
            }
        },
        "email": "curtis.taylor@example.com",
        "login": {
            "uuid": "b937ecb2-e771-4d65-83f4-a1c09cd23389",
            "username": "blacklion685",
            "password": "luther",
            "salt": "cnsgVW4S",
            "md5": "61be4687475b21539043222366cf817d",
            "sha1": "97055e4ba6cddb964a86ef26d698f356343ca540",
            "sha256": "02209a76febf1fa83fd2ccba773f58c040ac9610020ddb0af5e30340d9258d0d"
        },
        "dob": {
            "date": "1945-05-20T14:57:46.471Z",
            "age": 76
        },
        "registered": {
            "date": "2007-11-04T01:00:40.610Z",
            "age": 14
        },
        "phone": "(208)-571-3307",
        "cell": "(720)-674-2198",
        "id": {
            "name": "SSN",
            "value": "375-88-5513"
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/men/49.jpg",
            "medium": "https://randomuser.me/api/portraits/med/men/49.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/men/49.jpg"
        },
        "nat": "US"
    }],
    "info": {
        "seed": "a9634c79dedb3d4a",
        "results": 5,
        "page": 1,
        "version": "1.3"
    }
}
View Code

指定性别的数据

比如我只需要性别为女的数据,添加参数

gender=[female]

https://randomuser.me/api/?results=5&nat=ca&gender=female

开发测试数据-通过API批量生成_f5_10

开发测试数据-通过API批量生成_git_02开发测试数据-通过API批量生成_5e_03
{
    "results": [{
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "Annabelle",
            "last": "Bélanger"
        },
        "location": {
            "street": {
                "number": 1591,
                "name": "Frederick Ave"
            },
            "city": "St. George",
            "state": "Ontario",
            "country": "Canada",
            "postcode": "Q9H 2W9",
            "coordinates": {
                "latitude": "36.8229",
                "longitude": "-136.5770"
            },
            "timezone": {
                "offset": "+3:30",
                "description": "Tehran"
            }
        },
        "email": "annabelle.belanger@example.com",
        "login": {
            "uuid": "2d927dac-49e2-4210-b225-afcc50fbd778",
            "username": "blackgoose707",
            "password": "bridge",
            "salt": "sM4kifaD",
            "md5": "5d4ecd966bf42731d9ab9900c8b2e665",
            "sha1": "1003be9b3f3502f29ef0af6fbcefcc48b63b7706",
            "sha256": "20160bb83a22f42e276b3dd39fa924863e996050e73cbf117fc2d21ee12bd729"
        },
        "dob": {
            "date": "1997-05-15T23:04:56.393Z",
            "age": 24
        },
        "registered": {
            "date": "2015-10-28T18:00:24.789Z",
            "age": 6
        },
        "phone": "309-784-4558",
        "cell": "286-237-8585",
        "id": {
            "name": "",
            "value": null
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/78.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/78.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/78.jpg"
        },
        "nat": "CA"
    }, {
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "Juliette",
            "last": "Barnaby"
        },
        "location": {
            "street": {
                "number": 163,
                "name": "Pine Rd"
            },
            "city": "Stirling",
            "state": "Nunavut",
            "country": "Canada",
            "postcode": "H0K 8G7",
            "coordinates": {
                "latitude": "11.6931",
                "longitude": "128.6046"
            },
            "timezone": {
                "offset": "-12:00",
                "description": "Eniwetok, Kwajalein"
            }
        },
        "email": "juliette.barnaby@example.com",
        "login": {
            "uuid": "4da46bd8-c9ae-444d-b691-c00bd8ff4983",
            "username": "yellowzebra120",
            "password": "finance",
            "salt": "0rKHmQzU",
            "md5": "3fed11eb6ccfe28e7356af1b467be243",
            "sha1": "4581022a1678ce98ed3d83a99a7d00be8d900051",
            "sha256": "cac18d8ac3682b60eefa38e31febaa4e2ee959138975d1639cc46ec37c80b961"
        },
        "dob": {
            "date": "1970-05-01T03:23:04.142Z",
            "age": 51
        },
        "registered": {
            "date": "2007-10-30T20:12:21.828Z",
            "age": 14
        },
        "phone": "124-117-3074",
        "cell": "684-715-5739",
        "id": {
            "name": "",
            "value": null
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/79.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/79.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/79.jpg"
        },
        "nat": "CA"
    }, {
        "gender": "female",
        "name": {
            "title": "Mrs",
            "first": "Avery",
            "last": "Roy"
        },
        "location": {
            "street": {
                "number": 1935,
                "name": "Alfred St"
            },
            "city": "Stratford",
            "state": "British Columbia",
            "country": "Canada",
            "postcode": "O5H 6W4",
            "coordinates": {
                "latitude": "33.3422",
                "longitude": "-33.4054"
            },
            "timezone": {
                "offset": "+2:00",
                "description": "Kaliningrad, South Africa"
            }
        },
        "email": "avery.roy@example.com",
        "login": {
            "uuid": "b5ff075d-3471-42b6-9c6a-e7b289c6e416",
            "username": "redswan302",
            "password": "indians",
            "salt": "2IItAlGp",
            "md5": "0277ce553d60ab1cca5536c88d6cda8c",
            "sha1": "df599616bed150c04082c10f61afbf14921e1e3b",
            "sha256": "2d6d0d21e2f1bfc3cd832d8cf3f18d13ac0d51f4ef7610250f931b09ed92d238"
        },
        "dob": {
            "date": "1992-09-24T19:30:43.591Z",
            "age": 29
        },
        "registered": {
            "date": "2012-01-07T20:14:06.013Z",
            "age": 9
        },
        "phone": "706-882-1719",
        "cell": "890-029-7905",
        "id": {
            "name": "",
            "value": null
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/18.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/18.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/18.jpg"
        },
        "nat": "CA"
    }, {
        "gender": "female",
        "name": {
            "title": "Mrs",
            "first": "Leanne",
            "last": "Gagné"
        },
        "location": {
            "street": {
                "number": 6162,
                "name": "Regent Ave"
            },
            "city": "Hampton",
            "state": "Nunavut",
            "country": "Canada",
            "postcode": "F7H 9H0",
            "coordinates": {
                "latitude": "71.6466",
                "longitude": "-91.9607"
            },
            "timezone": {
                "offset": "+2:00",
                "description": "Kaliningrad, South Africa"
            }
        },
        "email": "leanne.gagne@example.com",
        "login": {
            "uuid": "bf3c9832-d11d-4884-a384-7ae3e82b0add",
            "username": "purpleelephant345",
            "password": "electric",
            "salt": "aVgqztwf",
            "md5": "aaf47c1e6a0441a5180536c6e48bc627",
            "sha1": "804769dbb2cf230b07fc236cfdd279dd8d6656ed",
            "sha256": "097736b6a60fff1ed3cef877842ea5fd8ada06423ecc547c9f1b40b872033430"
        },
        "dob": {
            "date": "1975-08-30T16:08:06.161Z",
            "age": 46
        },
        "registered": {
            "date": "2009-12-02T10:38:20.632Z",
            "age": 12
        },
        "phone": "963-089-8430",
        "cell": "220-430-1447",
        "id": {
            "name": "",
            "value": null
        },
        "picture": {
            "large": "https://randomuser.me/api/portraits/women/29.jpg",
            "medium": "https://randomuser.me/api/portraits/med/women/29.jpg",
            "thumbnail": "https://randomuser.me/api/portraits/thumb/women/29.jpg"
        },
        "nat": "CA"
    }, {
        "gender": "female",
        "name": {
            "title": "Ms",
            "first": "Maeva",
            "last": "Singh"
        },
        "location": {
            "street": {
                "number": 1720,
                "name": "Balmoral St"
            },
            "city": "Oakville",
            "state": "Saskatchewan",
            "country": "Canada",
            "postcode": "W7U 1C5",
            "coordinates": {
                "latitude": "-51.0562",
                "longitude": "-142.7077"
            },
            "timezone": {
                "offset": "-9:00",
                "description": "Alaska"
            }
        },
        "email": "maeva.singh@example.com",
        "login": {
            "uuid": "b1edf113-ebe0-4899-8ad7-3a5589c69b0c",
            "username": "crazykoala535",
            "password": "woof",
            "salt": "yKN24LPt",
            "md5": "f43642279f318db24d0761b58889556e",
            "sha1": "29bb884f0545eb4b675990b9f851fc56f5a1e1bd",
            "sha256": "a47893f349eac96f457a0689169e6979072fbf7e9bc9be54201e59535b8115d3"
        },
        "dob": {
            "date": "1973-02-04T11:31:32.805Z",
            "age": 48
        },
        "registered": {
            "date": "2012-01-09T01:56:09.978Z",
            "age": 9
        },
        "phone": "385-253-6818",
        "cell": "826-789-5683",
        "id": {
            "name": "",
            "value": null
        },
        "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"
        },
        "nat": "CA"
    }],
    "info": {
        "seed": "5f98208835618a50",
        "results": 5,
        "page": 1,
        "version": "1.3"
    }
}
View Code