Systems | Development | Analytics | API | Testing

The Critical Role of API Security in the Internet of Things (IoT)

From smart homes to wearable devices to connected cars, the Internet of Things (IoT) is bringing about a new era of hyper-connectivity. Experts expect investments in the IoT ecosystem to rise above $1 trillion in 2026 — with no signs of slowing down. Application programming interfaces (APIs) are the backbone of IoT, ensuring scalability and security across billions of connected devices.

Unlock Faster Insights and Issue Resolution with Kong Konnect Advanced Analytics

APIs are the backbone of the modern enterprise. However, troubleshooting API errors and resolving issues quickly can be challenging given their role in application operational continuity and customer experience. Time-sensitive resolution demands monitoring and deep analytical insights into API performance and usage. Combining both these capabilities in one tool accelerates real-time resolution and empowers stakeholders to surface business-critical API performance metrics through a self-service motion.

Announcing Insomnia 9.3.3 GA with 20x Better Performance, Remembering Last Open Files, and Improved Sidebar

We're pleased to announce the general availability of Kong Insomnia 9.3.3. This release ships with numerous improvements, particularly around performance. We strongly recommend updating to this latest version to get the best user experience in your daily workflow with Insomnia.

Top 7 Must-Try AI API Tools for Developers

Upon close inspection of the growing adoption of artificial intelligence across different industries, it becomes apparent that a lot it rests on the shoulders of API-powered systems. A survey by McKinsey found that 56% of respondents reported AI adoption in at least one function within their organizations, with significant increase in the use of AI APIs for tasks like natural language processing and computer vision.

Mastering API Governance: Best Practices for Success

API governance sets the rules and practices to manage APIs efficiently, ensuring they remain discoverable, consistent, and secure. It’s crucial for businesses aiming to control API sprawl and enhance collaboration. This guide explores API governance, its role in effective API management, its benefits, and best practices for successful implementation.

Mastering API Modeling: Essential Concepts and Practices

An API model acts as a blueprint for building scalable and maintainable software interfaces. In this article, you’ll discover how to design, implement, and validate a robust API model, including the use of AI models. We’ll cover key concepts like API modeling, essential components, user identification, and best practices.

What is Idempotency?

Idempotent operations produce the same result even when the operation is repeated many times. The result of the 2nd, 3rd, and 1,000th repeat of the operation will return exactly the same result as the 1st time. In this post, we will demystify the concept of idempotency—a fundamental property that ensures consistency, predictability, and reliability in APIs and distributed systems.

Building Success in the Manufacturing Industry with API Management

Manufacturing has been one of the most prominent industries worldwide since the Industrial Revolution. Since then, from producing textiles to computer chips, manufacturers have always looked for ways to innovate. In the age of AI and APIs (or application programming interfaces), tech companies are looking for technological breakthroughs to gain an edge over the competition.

Efficient Dom Manipulation With The Virtual Dom And Refs

Ever wondered why your favorite websites are so fast and responsive? It all boils down to how they handle DOM manipulation. The Document Object Model (DOM) represents your web page as a structured tree. Traditionally, we used JavaScript methods like getElementById or removeChild to make changes. But as websites get more complex, these methods can slow things down. Enter React, with its game-changing Virtual DOM.