API Docs

GoMyPrompt API discovery docs

Explore the public API discovery surfaces, auth model, and the core endpoints that matter most for onboarding and image-backed prompt workflows.

Base URL: https://www.gomyprompt.com/v1/apiOpenAPI JSONAPI catalogMCP setup

API overview

GoMyPrompt exposes a production API for authentication, workspaces, boards, prompt execution, image handling, validation, and prompt operations. This public page focuses on the discovery endpoints and a representative subset of the API that agents and developers usually need first.

  • Base URL: https://www.gomyprompt.com/v1/api
  • Authentication for application calls uses a custom GoMyPrompt JWT bearer token.
  • This document is a curated guide and does not claim to list every internal endpoint.

Auth model

The API currently uses direct application login flows instead of a standard OAuth or OpenID Connect authorization server. Clients obtain a JWT from the login endpoint and send it as a Bearer token to protected endpoints.

  • POST /auth/register creates a new end-user account.
  • POST /auth/login returns the token used for authenticated API calls.
  • GET /auth/me returns the current authenticated user.

Discovery endpoints

The site now publishes machine-readable discovery surfaces so agents can find the API, skills, Markdown content, and MCP setup information from the homepage and other public pages.

  • /.well-known/api-catalog returns an RFC 9727 API catalog in Linkset JSON.
  • /openapi.json returns an OpenAPI description for the public API subset documented here.
  • /.well-known/mcp/server-card.json describes the GoMyPrompt MCP server for agent discovery.
  • /.well-known/agent-skills/index.json publishes the site skill index for public capabilities.

Selected endpoints

These are the core endpoints exposed in the public OpenAPI description because they are the most useful for onboarding, authentication, health checks, and image-backed board workflows.

  • GET /api/health
  • POST /auth/register
  • POST /auth/login
  • GET /auth/me
  • GET /workspace/{workspaceId}/api-config/active
  • POST /images/upload-url
  • GET /images/presign

Related public resources

GoMyPrompt also publishes public product and setup pages that are useful for agents and human operators who need context before they authenticate or start using the API.

  • /mcp explains how to connect the local GoMyPrompt MCP server to an AI client.
  • /signup and /login are the public application entry points.
  • Public guides and blog posts support Markdown negotiation when the request accepts text/markdown.