TetraMesa

  • About Us
  • Services
  • Clients
  • Contact
  • Blog

Product Leader Workflow API Literacy: n8n

August 27, 2026 By Scott

Postman is useful when you want to look closely at one API conversation: send a request, inspect the response, change a parameter, see an error.

A workflow platform such as n8n.io becomes useful when you want to watch several of those conversations turn into a workflow. That makes it a useful product-literacy tool even if you are not trying to become an automation engineer. A requirement such as “get a location, retrieve the forecast, decide whether rain is likely, then return a useful result” can stay abstract on a whiteboard. In n8n, we can wire the real calls together and watch data move from one step to another.

So we’re going to build a single companion workflow that goes with the article. It supports a manual learning path, useful failure handling and an externally callable webhook path, all using the same underlying geocoding, forecast and product-decision logic.

The completed workflow, its README and the downloadable n8n JSON are available in the public GitHub repository PM API Literacy Lab — Umbrella Weather Check. You can inspect the workflow structure there before importing it, or download the JSON and import it directly into your own n8n instance. (Note that there’s no guarantee that this will be continually updated, but it’s all been checked and working as of this writing.)

[Read more…]

Filed Under: Product Management, Tech / Business / General

The API Bill Is a Product & Finance Decision

August 26, 2026 By Scott

Bonus Hands On article for the product manager’s guide to digital connectivity series.

tl;dr

Unit Economics, ROI and P&L for Product Leaders

APIs are more popular than ever, and “API-first” has gone from a niche best practice to a default for a lot of product teams. The newest twist is that the consumers are no longer just apps and partners, they’re increasingly AI agents. APIs are becoming more like products than just internal plumbing.

This has the potential for serious impact on product work. Product managers spend a lot of time connecting customer behavior to product metrics. Conversion. Engagement. Retention. Task completion. Adoption. The next level is connecting those same decisions to financial outcomes, both cost and revenue. So we’re going to do that here.

That’s the idea behind Productify’s P&L guide for product leads. Growth metrics and financial impact should be understood together. A feature that increases engagement but damages margin may not be working economically unless that margin tradeoff is deliberate and justified elsewhere. A feature that costs more to serve but creates much more revenue, retention or risk reduction may be a terrific investment.

APIs can sometimes make this relationship more clearly visible.

The business question is the same here, what it costs to create a successful customer outcome, what that outcome is worth, and whether the economics get better or worse when the product wins.

Stop here if you like. Or scroll towards end to get the sample spreadsheet. But this was the main point. Everything that follows is details.

[Read more…]

Filed Under: Analytics, Product Management, Tech / Business / General

Product Leader API Literacy: Learn by Doing With Postman

August 24, 2026 By Scott

Bonus Hands On article for the product manager’s guide to digital connectivity series.

There’s a point where reading about APIs stops being very useful. At least this was true for me. The theory is fine. You can learn what an endpoint is, what JSON looks like, what a GET request does and why a 404 is different from a 500. But sometimes the fastest way to make those ideas stick is to actually send a request and look at what comes back. As I’ve pointed out elsewhere, our goal is not necessarily to become experts here. Though that’s ok. It’s to have a reasonable depth of understanding as to how the plumbing works so we can participate meaningfully where such tools impact product craft or P&L if we have financial responsibilities as well. This will be mostly about hands-on learning for some basic API usage; nothing to do with actually designing them or considerations for AI-first or revenue. Those are larger scope topics for another time.

[Read more…]

Filed Under: Product Management, Tech / Business / General, UI / UX

Product Leader’s API Interface Literacy Field Guide (5 of 5)

August 24, 2026 By Scott

In this part 5 of 5 for the series, we’re going to tie everything we’ve gone over about digital product connectivity together with a In this part 5 of 5 for the series, we’re going to tie everything we’ve gone over about digital product connectivity together with a field guide with learning references.

The first four parts are intended to offer a survey of product technical communications interfaces from APIs to agents and so on. This page is a See Also reference for more detailed information. A lot of it was used to craft the article series. Practically by definition, as a curated list of web things, it is likely to be outdated quickly. So consider this as just a snapshot for what the landscape of this space looks like in 2026.

Start with the landscape

  • Postman, State of the API 2025 – useful current data on API-first adoption, API revenue, AI agents as API consumers and MCP awareness.
  • Google, Developer’s Guide to AI Agent Protocols – a current map of MCP, A2A and newer agent protocols using one worked scenario.
  • Every API Authentication Method Explained (Don’t Choose the Wrong One) (YouTube)

Core interface references

  • OpenAPI Specification 3.2 – the formal description standard for HTTP APIs, including webhooks.
  • GraphQL Specification – authoritative GraphQL language and execution model.
  • gRPC Introduction – service definitions, RPC methods and Protocol Buffers.
  • gRPC Core Concepts – unary and streaming RPC models.
  • gRPC in 5 Minutes – YouTube
  • AsyncAPI Documentation – event-driven and message-based API concepts.
  • Apache Kafka Documentation – event streaming, producers, consumers, topics and decoupled processing.
  • MDN Server-Sent Events – practical reference for one-way server-to-browser streams.

Enterprise messaging and batch integration

Not every important integration is an always-on API or event stream. Many industries still rely heavily on structured business-document exchange and scheduled or batch-oriented flows.

  • What is Messaging? (IBM)
  • X12 – EDI standards used across healthcare, finance, transportation, supply chain and other industries.
  • UN/EDIFACT Executive Guide – United Nations global EDI standard for computer-to-computer exchange of business documents such as purchase orders, invoices and customs declarations.
  • What is a MESSAGE QUEUE and Where is it used? (YouTube)

Device and industrial connectivity

IoT is not one separate interface category. Connected devices may use request/response, publish/subscribe messaging, streams, command/control or other patterns depending on constraints such as bandwidth, power, connectivity and scale. These are useful starting points:

  • Blogs/An Overview of Industrial Communication Protocols
  • MQTT (Message Queuing Telemetry Transport) – lightweight publish/subscribe messaging designed for IoT and constrained or unreliable network environments.
  • OPC UA Overview – industrial interoperability across sensors, actuators, control systems, enterprise software and cloud integration, including IIoT and M2M.
  • Which IoT Protocol Is Best (LoRa, Thread, MQTT, CoAP & Matter Explained) (YouTube)
  • MQTT Tutorial: An Easy Guide to Getting Started with MQTT

Agent interfaces

  • Model Context Protocol
  • Introducing the Model Context Protocol
  • Agent experience: How to design products that agents can actually use
  • The New Front Door – Agents Don’t Click
  • MCP July 28, 2026 Specification Update – current major MCP release and the move to a stateless protocol core.
  • MCP Tools – how servers expose discoverable functions to AI applications.
  • A2A Protocol – current documentation for agent-to-agent interoperability.
  • A2A v1.0 announcement – why the 1.0 release matters and how A2A complements MCP.

Product-manager-oriented explainers

  • IdeaPlan, API Design for Product Managers (This is a great writeup, but even though only from February, 2026, it’s already slightly out of date. They say, “Your API is a product with its own users (developers).” This is true. but increasingly, it’s going to be about AI agents as well.)
  • Every Type of API Simply Explained in 9 Minutes! (YouTube)
  • Department of Product, APIs Explained for Product Managers
  • Department of Product, Webhooks Explained for Product Managers
  • Smashing Magazine, Understanding API-Based Platforms
  • REST APIs for Product Managers
  • Unified.to, MCP Guide for Product Managers
  • Snyk, MCP Servers for Product Managers

How to use this guide

A PM does not need to read every specification front to back. Start with the taxonomy from Part 2, identify the interaction you are trying to understand, read one PM-oriented explanation, then go to the primary specification when a decision depends on precise behavior.

The companion code from Part 3 is the hands-on layer. The goal is not certification in protocols. It is enough fluency to recognize the decision, ask better questions, and know where to go deeper.

Filed Under: Product Management, Tech / Business / General

Choosing How Your Product Talks (4 of 5)

August 24, 2026 By Scott

In this part 4 of 5 for the series, we’re going to look at the “So What?” of digital connectivity among products.

The product goal and product manager’s role with regard to things like products’ technical communication structures is to make sure the team has correctly defined the interaction the product needs. This includes customer and business consequences that will help engineering choose implementation options. This way, engineers can better determine what interface patterns and technologies are worth consideration.

There’s also a second-order goal. Product needs to determine if something should become a long-term supported product surface at all. Whether it’s an external API, webhook, event stream, device interface or something else, the moment there are external dependencies on these things, they become long-term promises involving versioning, reliability, support and so on. There are clearly costs to this, and Product, likely along with Finance and Engineering, needs to have those costs and benefits modeled.

[Read more…]

Filed Under: Product Management, Tech / Business / General

One Product, Many Interfaces (3 of 5)

August 24, 2026 By Scott

In this part 3 of 5 for the series, we’re going to look at the “How”of digital connectivity among products.

This will be a deeper dive, and links to some interactive tools and exercises will be included below. A taxonomy of anything is useful until it becomes a giant set of overwhelming boxes. So instead, one way to illustrate the differences for this set of things to use examples and show where the parts can be applied in useful ways. This will ideally be more effective than just a basic chart alone. Several practical test examples will be built and linked into this article so. you can manipulate some of these things yourself if you like.

Let’s pretend we have a logistics service. We’ll call it ScottsHouseOfLogistics. Because no one is likely going to bother getting that URL and this way I have a place to put all the stuff I want to sell. Ideally we’ve got customers. We’ll also have packages, drivers, delivery stops, tracking events and support cases. Our overall realm will be the same. What changes are the interaction scenarios.

We won’t just pick a solution and use that function repeatedly. These tools aren’t necessarily competitors. Several may coexist because they’re solving different interaction problems. Any PM that’s been around awhile has seen choices made based on what “we have on hand and know right now.” That might be a bad idea, but often can be the best course of action. You use the tools you have and know. But is that always the best practice? Unlikely. This isn’t about product managers learning to call every one of these shots. Still, if it’s your product and you’re on the hook for success / failure, maybe P&L, then you should at least be asking the right questions or understand what your colleagues are telling you about choices.

[Read more…]

Filed Under: Product Management, Tech / Business / General

The Interface Taxonomy Beyond APIs (2 of 5)

August 21, 2026 By Scott

In this part 2 of 5 for the series, we’re going to look at the “What & When”of digital connectivity among products.

The fastest way to make this whole topic area a confusing mess is to just list out technology definitions. This might not be the best way to learn how things work. Though we do need to quickly visit buzzwords like REST, GraphQL, gRPC, webhooks, MCP, and some others. They don’t all sit at the same conceptual level, and they’re not interchangeable answers to one problem. What we’re going to do in this article series is look at some use cases and a handful of popular options. And in the very next installment, some live examples and work products of things you can try yourself if you want to dive in a bit. Again, we’re not trying to be coders. We won’t be experts. But sometimes just seeing something actually work can bring those Aha moments we can keep with us over time vs. just spewing buzzwords. It’s the difference between sleepily scanning another bullet point list vs. “oh, yeah… I see how that works now.” (We are going to ask some questions and run some lists first before we get to the fun stuff though.)

A useful direction in this space can perhaps start by asking ”What interaction are you trying to create?” Then look at technologies that can do it. Or you can always ask your dev, architect or AI team members. Yeah, I said it. “AI team members.” While I believe in the “mostly sort of trust, but verify” framework here, at this point, I’ve found our still somewhat new AI friends rise to that level. Maybe they still have that fresh new AI smell, and we still need to sort out best ways to use them, but there you go.

Diving deeper now, we can see things like OpenAPI and AsyncAPI can describe interfaces. OAuth 2.0 handles delegated authorization. JSON and Protocol Buffers represent data. SDKs package interfaces for developers. HTTP, WebSockets and MQTT move information. All these things matter, but they are not all separate product interaction categories.

[Read more…]

Filed Under: Product Management, Tech / Business / General

Product Leader Mental Models of Connectivity Beyond APIs (1 of 5)

August 21, 2026 By Scott

In this part 1 of 5 for the series, we’re going to look at the “Why” of digital connectivity among products first. Then we’ll dig into some details including several real-world hands-on examples.

Why APIs and Interfaces need a fresh high-level consideration.

We know the role “Digital Product Manager” has always been ambiguous. Still, ideally any Product Manager should have something to do with market awareness, looking around corners, and so on. And this includes the building blocks we may choose. A lot of us may have come from some kind of coding background, but certainly not always. In any case, even if we don’t, (or shouldn’t), need to be expert developers, we should understand how our products are stitched together.

[Read more…]

Filed Under: Product Management, Tech / Business / General

Poor PMs Guide to AI Image Generation Workflow With n8n

August 13, 2026 By Scott

A practical setup for kicking out a lot of decent hero images fast, plus the decisions that mattered more than the tools.

Note: Files for this project are available here: GitHub: n8n-blog-image-pipeline

Here’s one from the “Practical Product Quick Build Toolkit.”

I needed bunch of graphics for content. Here’s how I got solid results quickly and inexpensively.

My focus is on product, not production. But time and money were factors (as always) so this was the fastest way to get things done while leaving a reusable workflow for future needs. There’s a variety of tools for this sort of thing, but I wanted specific direction with general rules. Not just “generate an image,” but a repeatable system that produced a consistent series.

Using a workflow agent tool like n8n coupled with an image-generation model did the trick. I could set images to get generated and then do something else. A few caveats up front: you still have to check the images. Every one. And you won’t own the copyright as you might with commissioned work. But you can kick out what you need fast. Even if you’re only using them as placeholders for a prototype or something, you can replace with better stock or custom work later. For a prototype test that just needs a quick hero image on every page, that trade is worth it. And this will work for a production site as well. But for highest level of quality, professional stock and commissioned work can replace these placeholders. If you’re using a full site AI generator, those will usually be able to make your graphics. But if building with a coding assistant, perhaps not. Here’s a solution for that. Create the graphics in bulk, stage them somewhere with know filenames, (ideally based on direction directly from a coding tool), then load them into your site’s image folder.

Here’s the setup, what it cost, and the rules I’d carry to any similar project. The tooling is the least interesting part. The decisions about what to automate, what to keep human, and where quality actually comes from are the ones worth consideration, whether you’re building this pipeline for one time bulk use or deciding how this AI tool flow fits into your product.

[Read more…]

Filed Under: Product Management, Tech / Business / General, UI / UX

AI Build Copilot, Part 6: MORE Bonus Bits & Pieces

July 22, 2026 By Scott

It doesn’t matter what you’re doing. Product Management work, Creative work. Requirements. Code. We’re all over these tools now and across disciplines, we face some of the same challenges. Here’s yet another set of practical snippets for dealing with AI-assisted coding and building. The tools can move fast and sometimes faster than we can track. This installment collects a few more practical habits for staying in control. These are the small, deliberate practices that keep “trust but verify” from turning into “hope it worked.”

[Read more…]

Filed Under: Product Management, Tech / Business / General, UI / UX

  • 1
  • 2
  • 3
  • …
  • 14
  • Next Page »

Recent Posts

  • Product Leader Workflow API Literacy: n8n
  • The API Bill Is a Product & Finance Decision
  • Product Leader API Literacy: Learn by Doing With Postman
  • Product Leader’s API Interface Literacy Field Guide (5 of 5)
  • Choosing How Your Product Talks (4 of 5)

Categories

  • Analytics
  • Book Review
  • Crypto
  • Marketing
  • Product Management
  • Tech / Business / General
  • Travel
  • UI / UX
  • Uncategorized

Location

We're located in Stamford, CT, "The City that Works." Most of our in person engagement Clients are located in the metro NYC area in either New York City, Westchester or Fairfield Counties, as well as Los Angeles and San Francisco. We do off site work for a variety of Clients as well.

Have a Project?

If you have a project you would like to discuss, just get in touch via our Contact Form.

Connect

As a small consultancy, we spend more time with our Clients' social media than our own. If you would like to keep up with us the rare times we have something important enough to say via social media, feel free to follow our accounts.
  • Facebook
  • LinkedIn
  • Twitter

Copyright © 2026 · TetraMesa, LLC · All Rights Reserved