https://github.com/bytechefhq/bytechef
Open-source, low-code, extendable API integration & workflow automation platform. Integrate your organization or your SaaS product with any third party API
https://github.com/bytechefhq/bytechef
ai ai-agents api automation embedded-ipaas integration-framework integrations ipaas java llm low-code mcp n8n no-code self-hosted typescript workato workflow workflow-automation zapier
Last synced: 12 days ago
JSON representation
Open-source, low-code, extendable API integration & workflow automation platform. Integrate your organization or your SaaS product with any third party API
- Host: GitHub
- URL: https://github.com/bytechefhq/bytechef
- Owner: bytechefhq
- License: other
- Created: 2021-09-30T03:39:20.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-22T19:12:49.000Z (13 days ago)
- Last Synced: 2025-09-22T20:41:31.830Z (13 days ago)
- Topics: ai, ai-agents, api, automation, embedded-ipaas, integration-framework, integrations, ipaas, java, llm, low-code, mcp, n8n, no-code, self-hosted, typescript, workato, workflow, workflow-automation, zapier
- Language: Java
- Homepage: https://www.bytechef.io
- Size: 85.7 MB
- Stars: 608
- Watchers: 7
- Forks: 96
- Open Issues: 537
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# OpenAPI generated API stub
Spring Framework stub
## Overview
This code was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.
By using the [OpenAPI-Spec](https://openapis.org), you can easily generate an API stub.
This is an example of building API stub interfaces in Java using the Spring framework.The stubs generated can be used in your existing Spring-MVC or Spring-Boot application to create controller endpoints
by adding ```@Controller``` classes that implement the interface. Eg:
```java
@Controller
public class PetController implements PetApi {
// implement all PetApi methods
}
```You can also use the interface to create [Spring-Cloud Feign clients](http://projects.spring.io/spring-cloud/spring-cloud.html#spring-cloud-feign-inheritance).Eg:
```java
@FeignClient(name="pet", url="http://petstore.swagger.io/v2")
public interface PetClient extends PetApi {}
```