At Markprompt, we take developer experience seriously. That’s why we’ve invested in building a robust API documentation system that’s both comprehensive and automatically generated from our actual codebase. In this blog post, we share how we leverage Effect Schema and OpenAPI to create our API documentation fully automatically.
The challenge with API documentation
API documentation is critical for our adoption, but it often suffers from two major problems:
- Documentation drift - As code evolves, documentation becomes outdated
- Inconsistent information - Parameter requirements, types, and examples aren’t consistently documented
We wanted to solve these problems once and for all by generating our API documentation directly from our code. This ensures that our documentation is always in sync with our actual implementation and provides a consistent experience for developers. This was not possible before Effect.
Enter Effect Schema
Effect is a powerful library for building robust TypeScript applications, and we are using it end-to-end at Markprompt as the backbone of our scalable agent infrastructure. One of its standout features is its Schema system. Effect Schema provides a way to define, validate, and transform data, and is the foundations for how we model data types and models in our system.
Here’s a simple example of a Schema that defines the input type of our public /search
API endpoint:
The beauty of this approach is that we get both compile-time validation and documentation in one go. Each parameter is strongly typed, with optional parameters clearly marked, and everything is annotated with descriptions and examples that flow directly into our API docs.
Building the HTTP API with Effect
To build our API endpoints, we use the @effect/platform
package, which provides a clean, type-safe way to define HTTP APIs:
Each endpoint is defined with:
- A clear HTTP method and path
- Expected success response schema
- URL parameters schema
- Middleware for authentication and validation
- OpenAPI annotations for documentation
Generating OpenAPI specifications
The magic happens when we combine Effect Schema with OpenAPI. The @effect/platform
package provides an OpenAPI module that can automatically generate OpenAPI specifications from our Effect Schema definitions:
This code generates a complete OpenAPI specification at the /openapi
endpoint, which includes all the endpoint definitions, parameter requirements, response schemas, and documentation annotations we’ve defined throughout our codebase.
Rendering the documentation with Scalar
Once we have our OpenAPI specification, we use Scalar ’s excellent React component to transform it into a beautiful, interactive API documentation interface:
Scalar provides:
- Beautiful, responsive UI - A clean, modern interface for exploring our API
- Search functionality - Find endpoints quickly with instant local search
- Code samples in multiple languages - Automatically generated examples in JavaScript, Python, cURL, and more
- Interactive playground - You can test API calls directly in the documentation
The benefits of this approach
By generating our API documentation from code, we’ve gained several major benefits:
- Always up-to-date - Our documentation automatically stays in sync with our implementation
- Type safety - We get compile-time validation and type checking for free
- Consistency - Every endpoint follows the same documentation structure
- Zero maintenance overhead - We don’t need to update documentation separately from code
Schema annotations for rich documentation
One of the key features that makes our documentation so comprehensive is Effect Schema’s annotation system. We use annotations to provide detailed information about each parameter and response field:
Combined with annotations, our schemas provide all the information needed for a comprehensive OpenAPI specification:
- The exact types of each parameter
- Which parameters are required versus optional
- Default values for optional parameters
- Descriptions of each parameter’s purpose and behavior
- Example output for code samples
All of this information is now automatically included in our OpenAPI specification and rendered nicely by Scalar.
Versioning our API
Another powerful feature of our setup is API versioning. We use Effect Schema to define versioned schemas for our API:
This allows us to maintain backward compatibility while evolving our API. Each version is fully documented.
Conclusion
By combining Effect Schema, OpenAPI, and Scalar, we’ve created an API documentation system that’s:
- Accurate - Always in sync with our actual implementation
- Comprehensive - Detailed information about every endpoint, parameter, and response
- Interactive - Developers can explore and test the API directly in the documentation
- Maintainable - Documentation updates automatically when we change our code
If you’re building an API, we highly recommend this approach. At Markprompt, we’re focused on building AI agents that streamline customer support, but our API documentation system is a perfect example of how a well-designed, type-safe, deterministic approach can also provide powerful automation. By investing in these foundational systems, we’ve eliminated an entire category of work, allowing our team to move fast and focus on shipping features rather than maintaining them.
Explore our API documentation to see the result in action, and check out Effect Schema and Scalar to learn more about the tools we use.