Developers
makers.page API & developer docs
makers.page publishes a small, public, read-only API for the product directory and resource catalog. No API key, no OAuth token, no signup, no sandbox to request, just HTTP.
Authentication
None. Every endpoint below is unauthenticated and rate-limit-free by design, so an agent can call it directly without a "contact sales" step. If usage grows enough to need limits, this page and the OpenAPI spec will document them first.
Base URL
https://makers.page/api/v1
OpenAPI spec
The full machine-readable schema, with a unique operationId, description, and typed parameters/responses for every operation, is published at https://makers.page/openapi.json. Point any function-calling or tool-use framework at it directly.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /products | List approved products. Query params: category, q, limit. |
| GET | /products/{slug} | Get one product by its slug. |
| GET | /resources | List resource categories (payments, hosting, email, etc.). |
| GET | /resources/{category} | List tools in one resource category. |
Example requests
curl "https://makers.page/api/v1/products?category=AI&limit=5"
curl "https://makers.page/api/v1/products/your-product-slug"
curl "https://makers.page/api/v1/resources"
curl "https://makers.page/api/v1/resources/payments"
Errors
Every error response is structured JSON, never an HTML page:
{
"error": {
"code": "not_found",
"message": "No product found for slug \"foo\".",
"hint": "List products at GET /api/v1/products, or check the slug in the product's page URL."
}
}
code is one of not_found, bad_request, unauthorized, rate_limited, internal_error, so an agent can branch on it without parsing prose.
Markdown for agents
Every core page on makers.page, this one included, also serves Content-Type: text/markdown when you send Accept: text/markdown. No separate endpoint or .md suffix needed, same URL, content-negotiated. Responses set Vary: Accept so caches don't mix the two representations up.
Marketing MCP
Listed products can self-host the Marketing MCP, an open-source Model Context Protocol server that drafts launch content and X posts for a coding agent to run, with the founder approving anything before it publishes. Published on npm as makers-page-mcp.
Questions
Email alex@makers.page or see /contact.