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..."
}
This API analyzes text and returns various metrics including word count, character count, sentence count, estimated reading time, sentiment analysis, and token count (using GPT tokenizer).
POST /api/analyzeText
{
"text": "Your text to analyze goes here."
}
{
"wordCount": 5,
"characterCount": 28,
"sentenceCount": 1,
"sentiment": "positive",
"readingTimeMinutes": 0.025,
"tokenCount": 7
}