API Overview

Last updated: Jan 28, 2026

Authentication

To use our services, provide your API key in the X-Apikey header with every request.

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 expects the app idea base64 encoded as a query parameter named query.

An example 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 object in the following format:

{ "requireAI": boolean, "reason": string }
4XX - Client Errors

Our service may return any 4XX errors according to the HTTP specification.

5XX - Server Errors

Our service does not emit any 5XX errors.