Fexingo

The Developer Tools Podcast with Fexingo: APIs, Infrastructure, and Software for Engineers

Business EN ↓ 104 episodes

Lucas and Luna examine the developer tools landscape — APIs, infrastructure, and software designed for engineers — through the lens of business viability and technical merit. Each episode picks a specific tool or platform: how it was built, what problem it solves, who pays for it, and whether its architecture gives it a durable advantage. They compare pricing models, study public SDKs and changelogs, and trace the decisions that turn an open-source side project into a billion-dollar company. No demos, no tutorials — just two co-hosts reading documentation, running benchmarks, and asking whethe...

Author

Fexingo

Category

Business

Podcast website

www.fexingo.com

Latest episode

Jul 11, 2026

Where to listen?

Podcasts in the app Replaio Radio Coming soon

Podcasts are coming to the app soon. Install now and be the first to see a whole new take on podcasts

Get it on Google Play Install for free Android 5M+ downloads · 4.8 rating iOS soon

Episodes

How API Webhook Retries Cause Duplicate Payments 16.06.2026

Episode 54 of The Developer Tools Podcast explores how webhook retries in payment APIs can trigger duplicate charges — and why standard at-least-once delivery guarantees are often the culprit. Lucas and Luna break down a real-world case from a mid-size e-commerce platform that lost $40,000 in two hours due to missing idempotency checks on webhook receivers. They discuss how idempotency keys, exact...

Why API Response Compression Cuts Latency by Half 15.06.2026

Episode 53 of The Developer Tools Podcast dives into a hidden performance bottleneck: uncompressed API responses. Lucas and Luna explore why many developers skip gzip or brotli compression, how one mid-sized SaaS startup cut average response time from 340ms to 170ms just by enabling compression on their REST endpoints, and the surprising catch: compression trade-offs for very small payloads and st...

How API Fuzzing Exposes Hidden Security Flaws 15.06.2026

Lucas and Luna dig into API fuzzing — why sending random garbage to your endpoints is one of the most effective ways to find vulnerabilities before attackers do. They walk through a real case: a fintech startup that fuzzed its payment API and discovered an integer overflow that would have let a bad actor charge negative amounts. They explain how property-based testing frameworks like QuickCheck an...

How API Deprecation Headers Prevent Integration Disasters 14.06.2026

Episode 51 of The Developer Tools Podcast with Fexingo dives into a silent integration killer: API deprecation without proper headers. Lucas and Luna break down how companies like Stripe and Twilio use Sunset and Deprecation headers to give developers months of warning before breaking changes. They discuss a real case where a major payment API's undocumented deprecation caused a week-long outage f...

How API Versioning Strategies Reduce Deployment Friction 14.06.2026

In Episode 50 of The Developer Tools Podcast, Lucas and Luna dive into the hidden costs and operational risks of choosing the wrong API versioning strategy. They compare URI versioning, header-based versioning, and query-parameter versioning using real-world examples from Stripe, Twilio, and GitHub's API v3 to v4 migration. The hosts break down trade-offs in caching, backward compatibility, and cl...

Why Your API Needs Rate Limiting By User Tier 13.06.2026

Episode 49 of The Developer Tools Podcast tackles a common API design mistake: applying the same rate limit to every user. Lucas and Luna walk through a real-world example from a fictional SaaS analytics platform, showing how flat rate limits punish power users and leave revenue on the table. They discuss tiered rate limiting, burst allowances, and how to align API quotas with customer value. If y...

Why Your API Needs Structured Error Responses 13.06.2026

Most developers have dealt with cryptic API error messages like '500 Internal Server Error' or vague 'Something went wrong' responses. But bad error responses aren't just annoying — they cause real damage: debugging delays, frustrated developers, and even security leaks. In this episode, Lucas and Luna explore why structured error responses matter, using concrete examples like a payment API that r...

Why Your API Rate Limiting Backfires on Your Best Customers 12.06.2026

In this episode of The Developer Tools Podcast, Lucas and Luna explore how standard API rate limiting strategies can inadvertently punish your most valuable users. They break down the problem using a concrete example from the fintech world — a payment API that throttles a high-volume merchant during peak checkout — and explain why naïve token-bucket algorithms lead to frustrated customers and lost...

How API Rate Limiting Backfires on Your Best Customers 12.06.2026

This episode dives into the hidden cost of API rate limiting — punishing your most valuable users. Lucas and Luna examine a real case where a developer cut off their own biggest client with a 429 status code, and explore alternatives like cost-based limiting and queue-backed admission that prioritize high-value traffic. They also unpack how companies like Stripe and GitHub handle this differently,...

How To Design Idempotent APIs That Survive Network Chaos 11.06.2026

Episode 45 of The Developer Tools Podcast tackles one of the hardest problems in distributed systems: making APIs truly idempotent when networks drop, retry, and duplicate requests. Lucas and Luna break down why naive idempotency-key implementations fail — using the real-world example of a payment API that double-charged 200 customers because the key storage wasn't atomic. They walk through the ac...

How API Query Languages Prevent Overfetching and Underfetching 11.06.2026

Lucas and Luna explore how API query languages like GraphQL and OData solve the fundamental problems of overfetching and underfetching that plague traditional REST endpoints. Using Stripe's API evolution, GitHub's GraphQL migration, and Netflix's internal tools as examples, they break down why giving clients control over response shapes reduces bandwidth, improves app performance, and simplifies v...

Why Your API Idempotency Keys Fail Under Load 10.06.2026

Lucas and Luna dig into API idempotency — the deceptively tricky promise that retrying the same request won't cause duplicate side effects. They walk through a real incident at a payment processor where idempotency keys silently expired mid-transaction, leading to double charges and a cascading outage. The discussion covers why naive key-value store implementations fail under high concurrency, how...

Why API Response Envelopes Waste Bandwidth and Hurt Performance 10.06.2026

Episode 42 of The Developer Tools Podcast with Fexingo digs into a subtle performance killer: the API response envelope. Lucas and Luna explore how wrapping every response in a standard object — with status codes, messages, and metadata — can double payload size and add milliseconds of latency, especially at scale. They reference real-world data from Postman's 2025 API survey showing that 40% of d...

Why Your API Webhook Payloads Leak Sensitive Data 09.06.2026

Episode 41 of The Developer Tools Podcast dives into a silent security risk: API webhook payloads that inadvertently expose sensitive customer data. Lucas and Luna break down a real-world case from 2025 where a major payment processor leaked full credit card numbers through a webhook delivery system designed to only transmit transaction confirmations. They explain how payload schema design, event...

How API Documentation Drift Breaks Developer Workflows 09.06.2026

Episode 40 of The Developer Tools Podcast dives into API documentation drift—the silent but costly problem where your docs fall out of sync with actual behavior. Lucas and Luna explore real-world examples, including a famous incident where a fintech API's undocumented field led to millions in failed transactions. They discuss why traditional documentation approaches fail, how automated spec-driven...

How API Spec Languages Reduce Integration Errors 08.06.2026

Lucas and Luna dive into how OpenAPI, AsyncAPI, and gRPC's protobuf specs can catch integration errors before they hit production. They examine a case where a fintech startup's manual documentation led to a $2 million settlement loss, and how adopting a machine-readable spec language could have prevented it. They also discuss the trade-offs between spec-first and code-first approaches, and why eve...

Why Your API Retry Logic Is Making Outages Worse 08.06.2026

Episode 38 of The Developer Tools Podcast dives into a counterintuitive failure pattern: retry storms. Lucas and Luna walk through a real incident at a major payments API where naive retry logic turned a 50-millisecond database blip into a 47-minute cascading outage affecting thousands of merchants. They explain exponential backoff with jitter, how Stripe and AWS handle retries differently, and wh...

How API Error Messages Cause Confusion and Wasted Time 07.06.2026

In this episode, Lucas and Luna explore how poorly written API error messages can lead to hours of wasted debugging and even security vulnerabilities. They use the example of a major cloud provider's ambiguous 403 error that misled developers into thinking they had an authentication problem when the real issue was a missing resource permission. They discuss design principles for error messages tha...

How API Pagination Limits Cause Silent Data Loss 07.06.2026

Episode 36 of The Developer Tools Podcast with Fexingo dives into a common but overlooked API design flaw: how default pagination limits silently truncate data without errors. Lucas and Luna walk through a real scenario where a financial data aggregator missed 23% of transactions because of a 100-record-per-page cap. They explain why developers should use cursors over offsets, how request coalesci...

How API Token Rotation Prevents Security Breaches 06.06.2026

Episode 35 of The Developer Tools Podcast: Lucas and Luna dive into why rotating your API tokens is not just a best practice but a critical defense against credential leaks. They break down the anatomy of a real-world token compromise at a major SaaS provider, explain the difference between short-lived and long-lived tokens, and discuss the operational overhead of automated rotation. Lucas shares...

Why Your API Gateway Timeout Settings Break Your Microservices 06.06.2026

Episode 34 of The Developer Tools Podcast. Lucas and Luna dig into a specific, costly failure pattern: API gateway timeout configurations that silently destroy microservice reliability. Using a real example from a mid-2025 incident at a major European e-commerce platform, Lucas explains how a 30-second default gateway timeout caused cascading failures across 12 internal services. Luna pushes on wh...

How API Schema Evolution Causes Unnoticed Data Corruption 05.06.2026

Episode 33 of The Developer Tools Podcast. Lucas and Luna explore how evolving API schemas silently corrupt data at scale, using the real-world example of a payments API that dropped a required field from its response schema. They discuss why backward compatibility alone isn't enough, how client-side assumptions harden, and why schema validation in CI/CD pipelines is a must. Plus, a note on why th...

How API Response Caching Can Double Throughput Without New Hardware 05.06.2026

In this episode of The Developer Tools Podcast, Lucas and Luna dive into the practical realities of API response caching. They explore how caching at the gateway level can reduce latency by 60% or more, using real-world examples like a fintech company that cut database queries from 300 to 30 per second. They discuss cache invalidation strategies, the trade-offs of stale data, and why many teams ov...

Why Your API Access Control Is a Trust Boundary Problem 04.06.2026

Episode 31 of The Developer Tools Podcast with Fexingo: APIs, Infrastructure, and Software for Engineers. Hosts Lucas and Luna drill into API access control — specifically, why most teams design it as a permission matrix when they should be treating it as a trust boundary between internal systems. Using the March 2026 Snowflake misconfiguration incident as a case study, Lucas walks through how a s...

How API Audit Logs Become Your Most Expensive Records 04.06.2026

Episode 30 of The Developer Tools Podcast: Lucas and Luna explore the hidden cost of API audit logs — the storage, compliance, and compute expenses that silently balloon as your system scales. They break down real numbers: a typical compliance-mandated retention of 90 days, the per-request overhead of structured logging, and how one engineer at a fintech startup discovered their audit trail cost m...

Listen to the The Developer Tools Podcast with Fexingo: APIs, Infrastructure, and Software for Engineers podcast in Replaio

Radio and podcasts in one app - free, with no sign-up. Install today and do not miss the launch

Get it on Google Play

Replaio is not a podcast publisher; show names, artwork and audio belong to their authors and are distributed through public RSS feeds.