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 Logging Without Sampling Breaks Your Debugging 03.06.2026

In this episode of The Developer Tools Podcast, Lucas and Luna dive into the hidden costs of logging every API call at high volume. They discuss how a popular fintech's verbose logging once caused 40-minute delays in incident response, why sampling strategies matter more than tooling choice, and how structured vs. unstructured logs affect debugging velocity. The hosts walk through realistic sampli...

Why Your API Gateway Logs Are Lying to You 03.06.2026

Lucas and Luna dig into a problem that silently wastes developer hours and cloud spend: API gateway logs that look clean but actually mask upstream failures. They walk through a real scenario from a large e-commerce company where a 200-status response was hiding a 1.2-second timeout on the backend service, costing $45,000 a month in unnecessary retries and degraded user experience. Then they cover...

Why API Versioning in the URL Is a Design Mistake 02.06.2026

Episode 27 of The Developer Tools Podcast argues that putting API version numbers in the URL path is a bad architectural decision that creates long-term maintenance headaches. Lucas and Luna walk through the case of a real fintech company that migrated from URL versioning to header-based versioning after three years of compounding complexity. They discuss how the wrong versioning strategy can sile...

Why Your API Webhook Delivery Guarantees Are a Lie 02.06.2026

Lucas and Luna unpack the uncomfortable truth behind API webhook delivery guarantees. Most developers assume at-least-once delivery means reliability, but the real failure mode is silent duplication. Using Stripe's idempotency keys and GitHub's webhook retry logic as case studies, they dissect why exactly-once delivery is mathematically impossible over a network, and how to build idempotent receiv...

How API Rate Limits Destroy Developer Experience 01.06.2026

In this episode of The Developer Tools Podcast, Lucas and Luna dive into a specific API pain point that rarely gets discussed in detail: how rate limits affect developer experience and productivity. They start with a concrete case from a real developer survey showing that 40% of junior developers abandon an API after hitting rate limits twice. Lucas explains the difference between hard and soft ra...

How API Pagination Design Affects Performance and Developer Experience 01.06.2026

Episode 24 of The Developer Tools Podcast explores how API pagination design directly impacts both backend performance and frontend developer experience. Lucas and Luna break down the trade-offs between offset-based and cursor-based pagination, using real-world examples from GitHub and Twitter's APIs. They discuss why cursor-based pagination is often preferred for large datasets, how inconsistent...

How API Status Codes Mislead Your Debugging 31.05.2026

Episode 23 of The Developer Tools Podcast. Lucas and Luna dig into how HTTP status codes can mislead developers during debugging. Using the case of a fintech startup that spent days chasing a 500 error that was really a 429 in disguise, they explain when status codes lie, why middleware can strip critical context, and what a better debugging-first API contract looks like. They discuss the tension...

Why Your API Idempotency Is Not Actually Working 31.05.2026

Lucas and Luna dig into API idempotency — why most implementations fail under real-world conditions, how Stripe's idempotency key pattern actually works, and the one edge case that breaks idempotent retries. They walk through a concrete example from a payment API: what happens when a request times out but the server processes it anyway. Lucas explains the difference between idempotency key collisi...

How API Deprecation Kills Developer Trust 30.05.2026

Lucas and Luna unpack a specific failure: Twilio's 2023 deprecation of `twilio-ruby` v5 without a stable migration path. They walk through the timeline — the one-line changelog entry, the six-month window that actually required eight months of refactoring, and the exodus of mid-market Ruby shops to Plivo. They compare Twilio's approach to Stripe's API lifecycle docs and GitHub's sunset header, the...

Why Your API Pricing Model Is a Developer Relationship Problem 30.05.2026

Episode 20 of The Developer Tools Podcast with Fexingo digs into the hidden cost of API pricing models—using Twilio's 2024 pricing overhaul as the central case. Lucas and Luna break down why per-request pricing breaks at scale, how usage-based models create trust issues with developers, and what a predictable alternative looks like. They walk through the specific math of a hypothetical SaaS compan...

When Your API Calls Cost More Than Your Server 29.05.2026

Lucas and Luna break down why your API's third-party dependency bill is quietly eating your margin. They walk through a real example: a SaaS startup that used six external APIs — payment, geolocation, email, SMS, identity verification, and a data enrichment service — and found that 40% of their monthly cloud spend went to API calls, not compute. The episode traces how each call compounds: the base...

Why Your API Latency Spikes at 10AM Every Day 29.05.2026

Every morning, without fail, API response times double or triple for a predictable window. Most engineering teams treat this as a scaling problem and throw more instances at it. But the real culprit is almost never raw traffic volume — it's a collision between your cron jobs, your cache expiry, and your customers' usage patterns. In this episode, Lucas and Luna walk through a real-world case where...

Why Your API Monitoring Misses Silent Failures 28.05.2026

Lucas and Luna dig into the blind spots of API monitoring — the failures that don't trigger alerts but silently degrade your system. They break down a real incident at a fintech startup where HTTP 200 responses masked a database corruption for 47 hours. They explore why traditional health checks and latency metrics miss data-integrity bugs, and how a simple checksum endpoint caught what dashboards...

Why Your API Webhooks Need a Retry Strategy 28.05.2026

Webhooks are a standard way to deliver real-time events from APIs, but most teams treat them as fire-and-forget. Lucas and Luna dig into the mechanics of webhook delivery—why they fail silently, what exponential backoff actually looks like in production, and how Stripe, GitHub, and Twilio handle retries differently. They walk through a real-world case: a SaaS billing integration that lost $12,000...

Why Your API Throttling Strategy Is a Customer Experience Problem 27.05.2026

In episode 15 of The Developer Tools Podcast, Lucas and Luna dive into the often-overlooked customer experience angle of API throttling. They use the example of a major social media platform that angered developers by silently throttling requests without informative headers, leading to unpredictable app behavior and broken integrations. Lucas explains the difference between hard rate limits and dy...

Why Your API Backwards Compatibility Breaks More Than You Think 27.05.2026

Episode 14 of The Developer Tools Podcast: Lucas and Luna dig into why the biggest API compatibility problem isn't your versioning scheme—it's the hidden dependencies in client code. Using the 2021 Fastly outage as a concrete case, they unpack how one deprecated field caused cascading failures, and why 'don't break the contract' is harder than it sounds. They discuss practical strategies like sema...

Why Your API Rate Limiting Is a Business Problem 26.05.2026

Episode 13 of The Developer Tools Podcast explores why API rate limiting is not just a technical safeguard but a core business strategy. Lucas and Luna examine the 2024 Reddit API pricing controversy, where new rate limits caused widespread third-party app shutdowns and user backlash. Drawing lessons from GitHub's gradual API tiering and Twitter's rate-limit pivot in mid-2023, they discuss how rat...

Why Your CI Pipeline Is the True API Contract 26.05.2026

Lucas and Luna explore the idea that your CI pipeline, not your OpenAPI spec, is the real contract between API producers and consumers. They walk through a case from a fintech startup that reduced breaking-change incidents by 70 percent by treating CI as the single source of truth for API behavior — using contract testing, not integration tests. They discuss how this shifts ownership from a docs-v...

Why Your API Keys Are Leaking in Git Repos 25.05.2026

Episode 11 of The Developer Tools Podcast. Lucas and Luna dig into a persistent security problem: API keys and secrets accidentally committed to public and private Git repositories. They unpack a real 2024-2025 GitHub data leak study, explain how automated scanners find exposed credentials within minutes, and compare secret-scanning tools like GitGuardian, TruffleHog, and GitHub's built-in push pr...

How API Authentication Tokens Become a Security Risk 25.05.2026

Episode 10 of The Developer Tools Podcast digs into API authentication tokens—specifically, the quiet danger of token sprawl. Lucas and Luna examine how access tokens, personal access tokens, and service account keys accumulate across CI/CD pipelines, internal tools, and developer laptops. They walk through a real 2025 breach at a major data infrastructure company that started with a single leaked...

How Internal API Gateways Become a Single Point of Failure 24.05.2026

Lucas and Luna dig into a 2024 postmortem from a mid-sized fintech that lost two hours of transaction processing because their internal API gateway — the one tool every microservice relied on — went down during a routine config change. They walk through what happened, why the 'just add another gateway' fix isn't as simple as it sounds, and how companies like Uber and Stripe have moved to sidecar p...

Why Your API Documentation Fails on the First Read 24.05.2026

Episode 8 of The Developer Tools Podcast dives into why most API documentation fails developers on first contact. Lucas and Luna examine real docs from Twilio and LaunchDarkly, breaking down why traditional 'reference-first' docs lose readers and how 'task-oriented' design changes outcomes. They discuss the psychology of developer onboarding, the cost of unclear error messages in documentation, an...

How GraphQL Schema Design Affects API Performance 23.05.2026

Episode 7 of The Developer Tools Podcast with Fexingo digs into GraphQL schema design and its direct impact on API performance. Lucas and Luna discuss a real-world case where a poorly designed schema caused a 4-second query time at a mid-size SaaS company, and how they cut it to 200 milliseconds by restructuring resolvers and adding DataLoader. They cover batching, N+1 problem patterns, and when t...

Why Your API Versioning Strategy Is Already Broken 23.05.2026

Episode 6 of The Developer Tools Podcast tackles API versioning — specifically, why most teams default to URL-based versioning (v1, v2) and why that's a design debt they'll regret. Lucas and Luna walk through the real costs: two codebases to maintain, no graceful deprecation, and the silent contract with clients that never upgrades. They contrast it with header-based versioning and content negotia...

How Good Error Messages Cut Your Debug Time in Half 22.05.2026

Lucas and Luna dive into the art and science of API error messages. Most developers have stared at a '500 Internal Server Error' with no clue what broke. This episode examines how companies like Twilio and Stripe turned error responses into a developer experience differentiator. Lucas breaks down the three-tier structure of a great error message: machine-readable code, human-readable summary, and...

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.