Software Alternatives & Reviews
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

Apache APISIX

Apache APISIX is a dynamic, real-time, high-performance Cloud-Native API gateway, based on the Nginx library and etcd. subtitle

Apache APISIX Reviews and details

Screenshots and images

  • Apache APISIX Landing page
    Landing page //
    2022-06-27

Badges & Trophies

Promote Apache APISIX. You can add any of these badges on your website.
SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Videos

Getting started with Apache APISIX Dashboard

Getting started with Apache APISIX

APIs security with Apache APISIX

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Apache APISIX and what they use it for.
  • Implementing the Idempotency-Key specification on Apache APISIX
    This post shows how to implement it with Apache APISIX. - Source: dev.to / 19 days ago
  • Hardening Apache APISIX with the OWASP's Coraza and Core Ruleset
    In this post, I'd like to describe how to fix some of them via the Apache APISIX API Gateway. - Source: dev.to / 3 months ago
  • Mastering APISIX Health Checks: Active and Passive Monitoring Strategies
    In the era of digitization, the availability and stability of services are crucial for the success of enterprises. As a key component of microservices architecture, the API gateway plays a significant role. APISIX, an open-source API gateway platform, ensures the continuity and stability of services through its health check mechanism. - Source: dev.to / 4 months ago
  • 2023 in retrospective
    Next February will mark the two-year milestone that I'm working for: API7.ai on Apache APISIX. I'm still very pleased about both. It allows me to do things I like a lot, such as writing posts and giving talks. - Source: dev.to / 4 months ago
  • Five Apache projects you probably didn't know about
    In early 2021, I started to work on the Apache APISIX project. I have to admit that I had never heard about it before. In this post, I'd like to introduce some Apache projects that are less well-known than HTTPD or Kafka. - Source: dev.to / 4 months ago
  • Apache APISIX plugin priority, a leaky abstraction?
    Apache APISIX is an API Gateway, which builds upon the OpenResty reverse-proxy to offer a plugin-based architecture. The main benefit of such an architecture is that it brings structure to the configuration of routes. It's a help at scale, when managing hundreds or thousands of routes. - Source: dev.to / 5 months ago
  • Building a starter pack for an API-as-a-Service
    AFAIK, https://apisix.apache.org does not have a billing / monetization feature. - Source: Hacker News / 5 months ago
  • 10 Common API Resilience Design Patterns with API Gateway
    API resilience is about building robust APIs that can withstand a variety of challenges, ensuring that they continue to function effectively. API Gateways play a key role in this, acting as the entry point for external requests and managing the communication between different services by taking into account common API resilience patterns. One of the popular open-source API Gateways, Apache APISIX, provides a... - Source: dev.to / 6 months ago
  • API versioning
    Let's detail them in turn. It all boils down to routing; I'll demo the configuration with Apache APISIX to implement each versioning approach. - Source: dev.to / 6 months ago
  • How to prevent breaking API changes with API Gateway
    When you develop APIs, you sometimes change things that might cause problems for current API consumers. Evolving your API product without affecting current users is essential, otherwise, they might lose trust in your offer. It's impossible to altogether avoid these problems but you can minimize the impact or catch some catch-breaking changes before they happen. Breaking changes need to be identified during the... - Source: dev.to / 7 months ago
  • How to build a full-stack authentication app
    This post will guide you through building a full-stack authentication app with Apache APISIX, Authgear, and OpenID Connect (OIDC). You can find the project's source code on GitHub. For a swift start with the app, simply clone the repository and execute the code sample, following the steps provided in the README.md file. - Source: dev.to / 8 months ago
  • Monitor API Health Check with Prometheus
    APISIX has a health check mechanism, which proactively checks the health status of the upstream nodes in your system. Also, APISIX integrates with Prometheus through its plugin that exposes upstream nodes (multiple instances of a backend API service that APISIX manages) health check metrics on the Prometheus metrics endpoint typically, on URL path /apisix/prometheus/metrics. - Source: dev.to / 9 months ago
  • Show HN: WebAssembly dev environment for Envoy Proxy
    Hi HN! For the past few weeks we've been working on Proximal - a workflow engine that lets you quickly iterate on WebAssembly extensions for Envoy Proxy[0] (or other proxies) right on your local machine: https://github.com/apoxy-dev/proximal to improve API glue code we built an experimentation / development platform and hope you will find it useful! On the technical side this project packs Envoy itself, Envoy... - Source: Hacker News / 9 months ago
  • Building a ChatGPT custom plugin for API Gateway
    If you want to use Apache APISIX API Gateway as a front door for communication between ChatGPT custom plugins And backend APIs, you can check this repo API Gateway between ChatGPT custom plugin and backend APIs. - Source: dev.to / 10 months ago
  • API’s role in digital government: 10 national best practices
    Governments are using API-enabled infrastructures around the world to move fast towards digital to build improved citizen experience with gov services, work with external partners, reuse IT components more efficiently, and incorporate data into decision-making across their operations. As we have seen globally, the adoption of APIs by governments varies widely. A government’s API engineering team should be able to... - Source: dev.to / 10 months ago
  • Managing AI-powered Java App With API Management
    In this article, we will explore how to integrate OpenAI's ChatGPT APIs with a Spring Boot application and manage the APIs using Apache APISIX, an open-source API gateway. This integration will allow us to leverage the power of ChatGPT, a state-of-the-art language model developed by OpenAI, in our Spring Boot application, while APISIX will provide a robust, scalable, and secure way to manage the APIs. - Source: dev.to / 10 months ago
  • Need help on Api Gateway
    To get started with Apache APISIX, you can check out their documentation and guides on their official website (apisix.apache.org). Source: 11 months ago
  • Build Custom Authentication Using Appsmith and APISIX
    Authentication flow is a fundamental part of web applications. It ensures the security and privacy of user data while they are using your app. While there are many off-the-shelf authentication solutions available, building an authentication system using a low-code UI development platform and API management solution allows you to create secure web applications with ease. You can create an application without having... - Source: dev.to / 11 months ago
  • Chaining API requests with API Gateway
    An API gateway can be the right place to implement this functionality because it can intercept all client app requests and forward them to intended destinations. We are going to use Apache APISIX as it is a popular open-source API Gateway solution with a bunch of built-in plugins. However, at the time of developing the current blog post, APISIX did not have official support for the pipeline-request plugin. By... - Source: dev.to / 12 months ago
  • RBAC with API Gateway and Open Policy Agent(OPA)
    With various access control models and implementation methods available, constructing an authorization system for backend service APIs can still be challenging. However, the ultimate goal is to ensure that the correct individual has appropriate access to the relevant resource. In this article, we will discuss how to enable the Role-based access control(RBAC) authorization model for your API with open-source API... - Source: dev.to / 12 months ago
  • Batch request processing with API Gateway
    We need to create a new route that intercepts requests to /speaker and exposes a public virtual endpoint for batch processing using [public-api](https://apisix.apache.org/docs/apisix/plugins/public-api/) plugin. - Source: dev.to / about 1 year ago

Do you know an article comparing Apache APISIX to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Generic Apache APISIX discussion

Log in or Post with

This is an informative page about Apache APISIX. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.