API overview
Last updated: Aug 10, 2025
Authentification
X-Apikey
header.
Endpoints
GET /assessment
Description
This is the main endpoint of our service. Provided a string containing the app-idea, it will return a response with a qualified assessment on whether the idea requires AI to be implemented.Usage
The endpoint exepects the app-idea base64 encoded as a queryparam named — well —query
.
An exemple request might look like this:curl "https://app-analyzer.stupid-ideas.com/assessment?query=SGV5IHRoZXJl" -H "X-Apikey: YOUR-API-KEY"
Responses
200 - Successful
Returns a json in the following format:
{
"requireAI": boolean,
"reason": string
}
.