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/schema

Reference for the machine-readable JSON specification of the 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 a lightweight machine-readable summary of the public API.

When to use it

Use the schema endpoint when an agent needs a quick contract summary, endpoint list, and polling guidance without pulling the full OpenAPI document.

OpenAPI

For OpenAPI-aware tooling, use /api/v1/openapi. The lightweight schema and the OpenAPI document are generated from the same shared metadata layer.

Relationship to the docs

The schema is generated from the same metadata layer used by /developers, /docs, the OpenAPI export, and the llms manifests.

GET/api/v1/schema

Use this as the machine-oriented contract export for the current public API surface.

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/schema

Responses

200

Success

Returns the full JSON specification for the public API.

{
  "version": "1",
  "base_url": "https://www.madewithstack.com/api/v1",
  "endpoints": {
    "GET /api/v1/tools": {
      "description": "List all available tools with their slugs and categories."
    },
    "POST /api/v1/submit": {
      "description": "Submit a product for review."
    }
  }
}

Operational notes

  • Call this when bootstrapping an integration, validating endpoint coverage, or syncing a local agent-facing contract cache.
  • The schema endpoint is derived from the same shared metadata as the docs and llms manifests.
  • Use /api/v1/openapi for a formal OpenAPI 3.1 document.

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/openapi

Why this exists

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