This API generates a list of mock person data, including names, emails, and phone numbers.
GET /api/generateMockRandomPeople?count={number}
curl https://lumabyte.com/api/generateMockRandomPeople?count=5
[{ "Id": 1, "Name": "Ava Smith", "Email": "[email protected]", "PhoneNumber": "1234567890" }, { "Id": 2, "Name": "Liam Johnson", "Email": "[email protected]", "PhoneNumber": "0987654321" }]
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.
POST /api/urlToQRCode
{ "url": "https://example.com" }
{ "url": "https://example.com", "qrCodeBase64": "data:image/png;base64,iVB..." }