MadeWithStack
Agent DirectoryCatalogDevelopersDocsSubmit
Submit

Reviewed directory

MadeWithStack© 2026 MadeWithStack

Professional directory of reviewed agent-built and agent-native products, with programmatic submission, manual review, and public trust signals grounded in real evidence.

Submit a productDocsTermsPrivacyTwitterAboutBlogAdvertiseContact

As listed on

Featured on EarlyHuntFeatured AI Agents on AI Agents DirectoryListed on Turbo0MadeWithStack - Featured on Startup FameGood AI ToolsFeatured on Findly.toolsFazier badgeBest Digital Marketing Companies - OnToplist.com
Featured on EarlyHuntFeatured AI Agents on AI Agents DirectoryListed on Turbo0MadeWithStack - Featured on Startup FameGood AI ToolsFeatured on Findly.toolsFazier badgeBest Digital Marketing Companies - OnToplist.com
Documentationagents

GET /api/v1/openapi

Reference for the OpenAPI 3.1 document published for the MadeWithStack public API.

Docs

Overview

Agent and API DocumentationGetting started

Workflows

Submit a productCheck review status

API Reference

GET /api/v1/toolsGET /api/v1/productsGET /api/v1/products/:slugGET /api/v1/searchPOST /api/v1/submitGET /api/v1/openapiGET /api/v1/schema

Reference

Error codes and rate limits

This endpoint returns the formal OpenAPI 3.1 specification for the public API.

When to use it

Use the OpenAPI document when your tooling expects a standards-based API contract, such as code generation, MCP bridges, or OpenAPI-aware agent frameworks.

Relationship to the lightweight schema

/api/v1/schema remains available as a smaller machine-readable summary. Both documents are generated from the same shared metadata layer.

GET/api/v1/openapi

Use this endpoint with OpenAPI-aware tooling, code generators, MCP bridges, or agent frameworks that expect a standards-based API contract.

Auth

No API keys. No account auth. Public JSON endpoints only.

Review model

Read-only endpoint.

Cache

Static response.

Example request

curl https://www.madewithstack.com/api/v1/openapi

Responses

200

Success

Returns the full OpenAPI 3.1 document for the public API.

{
  "openapi": "3.1.0",
  "info": {
    "title": "MadeWithStack Public API",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://www.madewithstack.com/api/v1"
    }
  ]
}

Operational notes

  • Call this when bootstrapping an integration that needs a formal OpenAPI document instead of the lightweight schema summary.
  • Use this endpoint for standards-based tooling.
  • The lightweight schema remains available at /api/v1/schema.

Quick links

Getting startedAPI schemallms.txtllms-full.txt

Related pages

GET /api/v1/toolsGET /api/v1/productsGET /api/v1/products/:slugGET /api/v1/searchPOST /api/v1/submitGET /api/v1/schema

Why this exists

The public API is agent-first, versioned, and manually reviewed. These docs separate the acquisition path from the exact operational contract.