First-Class AWS Lambda Support
Designed around AWS Lambda Annotations and the Lambda programming model. Your existing handlers become complete OpenAPI operations instantly.
BuildMultiple Lambda Annotations projects
GenerateMultiple Generated OpenAPI Specs
MergeCLI Merge Tooling
DeployConsolidated OpenAPI Spec
S3 Cloud-Based Merge Coming Soon
Attribute-Driven API Definition
Define your Lambda endpoints with simple attributes
[LambdaFunction]
[HttpApi(LambdaHttpMethod.Get, "/products/{id}")]
[OpenApiOperation(Summary = "Get product by ID")]
[OpenApiTag("Products")]
public async Task<Product> GetProduct(string id)
{
return await _repository.GetByIdAsync(id);
}