Developer portal

Use findgoodprompt when an application or agent needs copy-ready examples for image generation or LLM work. The public read API returns JSON for prompt galleries, search, and individual prompt records. It is intentionally small, cacheable, and usable without an account.

Authentication and API keys

Current read-only endpoints do not require an API key. Do not send credentials in requests to this service. Write actions and administrative endpoints are not part of the public developer contract. If API keys are introduced, this page and the versioned API contract will be updated before they are required.

Quickstart

List prompts, search the collection, or fetch one prompt by its slug:

curl 'https://findgoodprompt.com/api/v1/prompts?per_page=10' curl 'https://findgoodprompt.com/api/v1/search?q=product+photography' curl 'https://findgoodprompt.com/api/v1/prompts/<slug>'

Sandbox and limits

The commands above are the live read-only sandbox: they return real public data and do not modify prompts. Cache responses, request only the page size you need, and respect HTTP 429 responses. The API supports ETags and pagination; use the cursor endpoint for long-running imports. The interactive API schema is available at /openapi.json when enabled by the deployment.

CLI

The source for the official zero-dependency Node.js CLI is in the repository's cli directory. It provides the same read operations as the API and is suitable for scripts and agent tools. Install it after the package is published with npm install -g findgoodprompt.

← Back to gallery