Explore and integrate Lumina APIs
Base URL: https://tools.repad.dev
/api/v1/newsRetrieve latest news articles
Response Structure
{
"news": [
{
"title": "string",
"link": "string",
"pubDate": "string",
"contentSnippet": "string",
"author": "string",
"categories": [
"string"
]
}
]
}curl -X GET 'https://tools.repad.dev/api/v1/news'/api/v1/ai/modelsRetrieve list of AI models from external provider
Response Structure
{
"models": [
{
"provider": "string",
"id": "string",
"env": [
"string"
],
"api": "string",
"doc": "string",
"npm": "string",
"models": [
"unknown"
]
}
]
}curl -X GET 'https://tools.repad.dev/api/v1/ai/models'/api/v1/quoteRetrieve a random motivational quote
Response Structure
{
"author": "string | null",
"quote": "string | null"
}curl -X GET 'https://tools.repad.dev/api/v1/quote'