Free Apis
Below are some free APIs that you can use in your projects. Subject to change at any time, but we will try to keep them up as long as possible.
Mock Random People API

This API generates a list of mock person data, including names, emails, and phone numbers.

Endpoint

GET /api/generateMockRandomPeople?count={number}

Parameters

  • count (optional): Number of people to generate. Default is 10. Maximum is 1000.

Sample Request

curl https://lumabyte.com/api/generateMockRandomPeople?count=5

Sample Response

[{
    "Id": 1,
    "Name": "Ava Smith",
    "Email": "[email protected]",
    "PhoneNumber": "1234567890"
}, {
    "Id": 2,
    "Name": "Liam Johnson",
    "Email": "[email protected]",
    "PhoneNumber": "0987654321"
}]
                
URL to QR Code API

This API takes a URL as input and returns a JSON response with the original URL and a Base64 encoded image of a QR code for that URL.

Endpoint

POST /api/urlToQRCode

Request Payload

{
    "url": "https://example.com"
}
            

Sample Response

{
    "url": "https://example.com",
    "qrCodeBase64": "data:image/png;base64,iVB..."
}
            

Demo