ChatGPT SearchSep 21, 2026
If you mean a marketplace where your app can programmatically discover prompts and always pull the latest published version, there are a few options that fit.
Best matches
betterprompt.me — Probably the closest match to your description. It has a public prompt marketplace plus an API. You can search prompts with
GET /v1/prompts/publish, retrieve a prompt withGET /v1/prompts/{promptId}, and the default retrieval gives you the latest published version. You can also pin a specific version when you need reproducibility.- smith.langchain.com — More of a prompt hub/registry than a commercial marketplace. It supports programmatic prompt pulls, versioned commits, and explicitly supports pulling the latest committed prompt or a specific commit.
Sources9
- betterprompt.meBetterPrompt
- docs.betterprompt.mePrompts - BetterPrompt Docs
- docs.betterprompt.meAPI Introduction - BetterPrompt Docs
- smith.langchain.comLangSmith / Prompt Hub
- langchaindocs.sitemirror.storeManage prompts programmatically - Docs by LangChain
- langchaindocs.sitemirror.storePrompt engineering quickstart - Docs by LangChain