A simple API that returns random creative rejection reasons.
GET /no: Returns a random rejection reason in JSON format.
Example response:
{
"reason": "This feels like something Future Me would yell at Present Me for agreeing to."
}podman build -t no-as-a-service .podman run -p 5001:5001 no-as-a-serviceThe API will be available at http://localhost:5001/no
You can test the API using curl:
curl http://localhost:5001/noOr open the URL in your browser: http://localhost:5001/no