Quick examples of API requests
This will return a JSON object containing information about the latest users.
Request Body
Name
Type
Description
{
// Response
}[{
"name": {
"title": "mr",
"first": "ross",
"last": "geller"
},
"id": 123,
"email": "[email protected]",
"phone": "011-962-7516",
"gender": "male",
"age": "34",
"occupation": "scientist",
...
},
{
"name": {
"title": "mrs",
"first": "jennifer",
"last": "gibson"
},
"id": 456,
"email": "[email protected]",
"phone": "212-934-5277",
"gender": "female",
"age": "29",
"occupation": "developer",
...
},
...
]Last updated