Introduction

This API documentation provides details about the API endpoints, authentication methods, and usage examples.

Endpoints

GET /random

Get a list of random users.

GET https://creaxin.vercel.app/random
{
  "name": "Mohamed",
  "age": 29,
  "occupation": "Personal Trainer",
  "address": {
      "country": "Algeria",
      "city": "Blida"
  },
  "timestamp": "6/9/2024, 3:52:20 PM"
}

GET /count=2

Get a specified a number of data.

GET https://creaxin.vercel.app/count=3
[
{
    "name": "Gabriel",
    "age": 74,
    "occupation": "Market Research Analyst",
    "address": {
        "country": "Fiji",
        "city": "Suva"
    },
    "timestamp": "6/9/2024, 6:15:01 PM"
},
{
    "name": "Mateo",
    "age": 19,
    "occupation": "Nurse",
    "address": {
        "country": "El Salvador",
        "city": "Soyapango"
    },
    "timestamp": "6/9/2024, 6:15:01 PM"
},
{
    "name": "Siti",
    "age": 19,
    "occupation": "Bricklayer",
    "address": {
        "country": "Vanuatu",
        "city": "Luganville"
    },
    "timestamp": "6/9/2024, 6:15:01 PM"
}
]