<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Kin Lane</title>
    <description>The latest articles on Forem by Kin Lane (@kinlane).</description>
    <link>https://forem.com/kinlane</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F520245%2F784ec874-c366-4588-b736-9eac98dbe9f0.jpg</url>
      <title>Forem: Kin Lane</title>
      <link>https://forem.com/kinlane</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kinlane"/>
    <language>en</language>
    <item>
      <title>Naftiko Framework Alpha 1: Turning API Sprawl Into Governed Capabilities for AI</title>
      <dc:creator>Kin Lane</dc:creator>
      <pubDate>Tue, 07 Apr 2026 23:16:57 +0000</pubDate>
      <link>https://forem.com/kinlane/naftiko-framework-alpha-1-turning-api-sprawl-into-governed-capabilities-for-ai-56ea</link>
      <guid>https://forem.com/kinlane/naftiko-framework-alpha-1-turning-api-sprawl-into-governed-capabilities-for-ai-56ea</guid>
      <description>&lt;p&gt;I have been writing about API sprawl for fifteen years. The shape of the problem has not really changed — large enterprises now run an average of 1,295 SaaS applications and over 14,000 internal APIs, with AI-related APIs up 807% year over year — but the stakes have. The agents are here. They want to consume everything. And nobody has a clear story for how to give them safe, governed access to what already exists without rebuilding the world.&lt;/p&gt;

&lt;p&gt;Today we are shipping the first alpha of the &lt;a href="https://github.com/naftiko/framework" rel="noopener noreferrer"&gt;Naftiko Framework&lt;/a&gt;. It is Apache 2.0, declarative, Java-based, and built around one simple idea: your existing data and APIs are not technical debt. They are strategic inventory. They just need to be made discoverable, governed, and reusable as &lt;strong&gt;capabilities&lt;/strong&gt; instead of scattered projects nobody can find.&lt;/p&gt;

&lt;p&gt;This post is a walkthrough of what shipped, why the spec-driven integration approach matters, and what it looks like to actually build with it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem: MCP sprawl on top of API sprawl
&lt;/h2&gt;

&lt;p&gt;If you are reading dev.to, you have probably already lived this. The first MCP integrations go great. The second wave starts to feel a little ad-hoc. By the time you are wiring your fifth or sixth tool, you realize you are just re-creating API sprawl one layer up — except now the ungoverned thing is talking directly to a model that will happily call it a thousand times in a runaway loop.&lt;/p&gt;

&lt;p&gt;The trigger symptoms are familiar:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MCP sprawl on top of API sprawl&lt;/li&gt;
&lt;li&gt;Teams shipping prototypes, but nothing makes it to production&lt;/li&gt;
&lt;li&gt;Security and compliance becoming the bottleneck&lt;/li&gt;
&lt;li&gt;Costs that are impossible to predict (tokens, models, &lt;em&gt;and&lt;/em&gt; upstream API usage)&lt;/li&gt;
&lt;li&gt;Specs that "age like bananas"&lt;/li&gt;
&lt;li&gt;You can't govern, secure, or reuse what you can't see&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The honest answer is that the existing toolchain — API gateways, iPaaS, ad-hoc MCP servers — was not built for this. We need a different unit of work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The unit: a capability
&lt;/h2&gt;

&lt;p&gt;Naftiko's answer is the &lt;strong&gt;capability&lt;/strong&gt;. A capability is a YAML file that declares two things: what it &lt;strong&gt;consumes&lt;/strong&gt; (the upstream APIs it calls) and what it &lt;strong&gt;exposes&lt;/strong&gt; (the surfaces it offers — MCP, Skill, or REST).&lt;/p&gt;

&lt;p&gt;Here is a real example from the Shipyard tutorial:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;naftiko&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;1.0.0-alpha1"&lt;/span&gt;

&lt;span class="na"&gt;capability&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;consumes&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;namespace&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;registry&lt;/span&gt;
      &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;http&lt;/span&gt;
      &lt;span class="na"&gt;baseUri&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://registry.shipyard.dev/api/v1"&lt;/span&gt;
      &lt;span class="na"&gt;resources&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ships&lt;/span&gt;
          &lt;span class="na"&gt;path&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;/ships"&lt;/span&gt;
          &lt;span class="na"&gt;operations&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
            &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;list-ships&lt;/span&gt;
              &lt;span class="na"&gt;method&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;GET&lt;/span&gt;

  &lt;span class="na"&gt;exposes&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;mcp&lt;/span&gt;
      &lt;span class="na"&gt;port&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;3001&lt;/span&gt;
      &lt;span class="na"&gt;namespace&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;shipyard-tools&lt;/span&gt;
      &lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Shipyard&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;MCP&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;tools&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;for&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;fleet&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;management"&lt;/span&gt;
      &lt;span class="na"&gt;tools&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;list-ships&lt;/span&gt;
          &lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;List&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;ships&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;in&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;the&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;shipyard"&lt;/span&gt;
          &lt;span class="na"&gt;call&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;registry.list-ships&lt;/span&gt;
          &lt;span class="na"&gt;outputParameters&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
            &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;array&lt;/span&gt;
              &lt;span class="na"&gt;mapping&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;$."&lt;/span&gt;
              &lt;span class="na"&gt;items&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
                &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;object&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;consumes&lt;/code&gt; declares where the data lives. &lt;code&gt;exposes&lt;/code&gt; declares what the agent sees. &lt;code&gt;call: registry.list-ships&lt;/code&gt; is the wire between the two. The &lt;code&gt;outputParameters&lt;/code&gt; block reshapes the upstream payload — renaming &lt;code&gt;imo_number&lt;/code&gt; to &lt;code&gt;imoNumber&lt;/code&gt;, dropping fields the agent does not need — so the model never sees the raw API surface.&lt;/p&gt;

&lt;p&gt;That is the whole idea. The spec is the integration. Not a description of it, not documentation written after the fact — the actual runnable artifact. The Naftiko Engine reads this YAML at runtime and serves it as a live MCP server. There is no code generation step, no compilation, no drift between what is documented and what is running.&lt;/p&gt;

&lt;h2&gt;
  
  
  Spec-driven integration, in plain terms
&lt;/h2&gt;

&lt;p&gt;The methodology behind this is what we are calling &lt;strong&gt;Spec-Driven Integration (SDI)&lt;/strong&gt;. It is the integration-domain cousin of spec-driven development, and it rests on a few principles that I keep coming back to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Specifications as the lingua franca.&lt;/strong&gt; The spec is the single source of truth. Maintaining an integration means evolving its spec. Everything else is derived.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Executable specifications.&lt;/strong&gt; A spec is only valuable if it is precise enough to produce a working integration directly. If it cannot be executed as-is, the gap is a signal of incompleteness — not an invitation for interpretation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Continuous refinement.&lt;/strong&gt; Specs are linted, validated, and analyzed for ambiguity throughout their lifecycle, not at a single approval gate.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bidirectional feedback.&lt;/strong&gt; Production behavior feeds back into the spec. The spec is a living artifact, not a snapshot.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why this matters for AI integration specifically: context engineering is fundamentally an integration problem. Agents need the right data, in the right shape, at the right time. When the spec is the artifact, agents (and the humans operating them) can reason about integrations, propose refinements, and validate consistency against a structured contract — instead of poking at opaque runtime behavior.&lt;/p&gt;

&lt;h2&gt;
  
  
  Four levels of progressive abstraction
&lt;/h2&gt;

&lt;p&gt;Naftiko meets your APIs where they are. The framework introduces a four-level progressive abstraction model for consumed APIs, so you do not have to rip and rebuild anything:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Forwarding HTTP client&lt;/strong&gt; — forward any HTTP call with shared endpoint behavior like authentication.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Templatized HTTP client&lt;/strong&gt; — reuse predefined request collections imported from HAR, Postman, or similar formats.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Structured API client&lt;/strong&gt; — abstract HTTP calls into clean web API paths and operations, enabling reuse across teams.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Functional MCP client&lt;/strong&gt; — abstract structured APIs into MCP tools, resources, and prompts for context engineering and agent orchestration.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can climb the ladder one capability at a time. Start by forwarding. Move to structured. Reach the top when it makes sense to. Nothing forces a wholesale rearchitecture.&lt;/p&gt;

&lt;h2&gt;
  
  
  What ships in Alpha 1
&lt;/h2&gt;

&lt;p&gt;The alpha release covers three areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Right-sized AI context&lt;/strong&gt; — declarative applied capabilities that expose Agent Skills, plus MCP support for Resources and Prompts alongside existing Tools support. The &lt;code&gt;outputParameters&lt;/code&gt; story above is the key here: capabilities shape response payloads into smaller, typed outputs aligned to tasks instead of dumping raw provider complexity into a context window.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API reusability&lt;/strong&gt; — lookups within API call steps, consumer authentication and permissions for API and MCP servers, reusable source HTTP adapter declarations across capabilities, and applied capabilities that compose multiple sources.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Core developer experience&lt;/strong&gt; — published artifacts on Maven Central and Docker Hub, Javadocs on javadoc.io, a Naftiko Skill based on the CLI, a Spectral-based ruleset for spec governance, JSON structure validation, a GitHub Action template based on Super Linter, and a comprehensive wiki with FAQ, getting started guide, and roadmap.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Alongside the framework, the &lt;strong&gt;Naftiko Fleet Community Edition&lt;/strong&gt; is also free. It ships with a VS Code extension for live structure and rules validation of capability YAML files, and Backstage templates that scaffold new capabilities and bootstrap their Git repositories. The Community Edition will always be free. Standard and Enterprise editions will add what large organizations need — SLAs, federation, continuous compliance, domain-level governance — but the framework itself stays open source.&lt;/p&gt;

&lt;h2&gt;
  
  
  Governance as guidance, not gatekeeping
&lt;/h2&gt;

&lt;p&gt;One of the things I keep saying out loud in conversations with platform teams: governance has to be guidance, not gatekeeping. Naftiko's Spectral-based ruleset enforces 15 consistency rules at lint time, the VS Code extension surfaces them as you type, and the GitHub Action template runs them in CI. The point is to catch the things that matter — naming, schema, identity propagation, exposed contract shape — &lt;em&gt;before&lt;/em&gt; a capability ships, not to slow anyone down with a review board.&lt;/p&gt;

&lt;p&gt;When procurement eventually starts asking the question Sarah Guo predicts in her "Dark Code" essay — "what did your agents do with our data on a Tuesday in March?" — the answer is in the spec, the governance ruleset, and the engine telemetry. Not reconstructed from scattered logs after the fact.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where this goes next
&lt;/h2&gt;

&lt;p&gt;The roadmap is on the wiki. The short version:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Alpha 2&lt;/strong&gt; (May 2026) — A2A server adapter, MCP authentication and gateway integration, webhook server adapter, conditional / for-each / parallel orchestration steps, OpenAPI-to-Naftiko import tooling, a Control API accessible via CLI, and starter capability templates.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Beta&lt;/strong&gt; (June 2026) — stable spec, resilience patterns (retry, circuit breaker, rate limiter, time limiter, bulkhead), MCP server-side code mode, expanded governance with tags and labels.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GA&lt;/strong&gt; (September 2026) — production-ready v1.0 with full test coverage, stable spec, and JSON Schema published to JSON Schema Store.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;This is an alpha. The spec will move. The edges are rough in places. But the core idea — that capabilities are the right unit, that governance is guidance not gatekeeping, that the producer-consumer relationship in API land has to be rethought for the agent era — that part I am clear on.&lt;/p&gt;

&lt;p&gt;If you have spent any time thinking about MCP, AI integration, or how to give your security and compliance teams something better than a SOC 2 PDF, this is for you. Roll up your sleeves, pull the Docker image, walk through the Shipyard tutorial, and tell me where it breaks.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/naftiko/fleet" rel="noopener noreferrer"&gt;github.com/naftiko/fleet&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Wiki &amp;amp; docs: &lt;a href="https://github.com/naftiko/fleet/wiki" rel="noopener noreferrer"&gt;github.com/naftiko/fleet/wiki&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ai</category>
      <category>api</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
    <item>
      <title>I Wanted to Invite You to the Postman $100K API Hack</title>
      <dc:creator>Kin Lane</dc:creator>
      <pubDate>Wed, 06 Jan 2021 04:39:30 +0000</pubDate>
      <link>https://forem.com/kinlane/i-wanted-to-invite-you-to-the-postman-100k-api-hack-3ce0</link>
      <guid>https://forem.com/kinlane/i-wanted-to-invite-you-to-the-postman-100k-api-hack-3ce0</guid>
      <description>&lt;p&gt;Postman is an essential tool in my API development toolbox. I enjoy using it as an API client to onboard, test, and integrate with APIs, but I am also increasingly using it to also develop and automate with API. Since the release of &lt;a href="https://blog.postman.com/introducing-postman-public-workspaces/" rel="noopener noreferrer"&gt;Postman public workspaces&lt;/a&gt; in November I have been captivated with exploring what is possible with Postman when working with different, but more specifically what is possible when you automate and orchestrate with different APIs in a public workspace with public APIs—the possibilities are endless. What is cool about all of this is that I get paid do to this, and now you can too as part of the Postman $100K API Hack.&lt;/p&gt;

&lt;p&gt;To help bring attention what is possible on the Postman platform we are putting on a hack challenge for the next 30 days, encouraging developers to build something cool with Postman and any APIs they think are interesting, useful, or just cool. Here are the details:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hacking runs Jan. 5, 2021 (9 a.m. PST) to Jan. 25, 2021 (5 p.m. PST)&lt;/li&gt;
&lt;li&gt;$100,000 USD in cash prizes&lt;/li&gt;
&lt;li&gt;&lt;a href="https://postman-hack.devpost.com/rules" rel="noopener noreferrer"&gt;Read the official rules&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://postman-hack.devpost.com/" rel="noopener noreferrer"&gt;Register for the Postman API Hack&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://postman-hack.devpost.com/resources" rel="noopener noreferrer"&gt;Get help on the Resources page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Watch the winners announced on February 3, 2021, at Postman Galaxy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everyone who registers as part of the hack will get a  limited-edition Postman API Hack T-shirt, but we have designated four levels of prizes to award developers who put Postman to work in the most innovative and interesting ways.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1st Place, Intergalactic Grand Prize (1) - $25,000 USD awarded to the team with the best project&lt;/li&gt;
&lt;li&gt;2nd Place, Andromeda Prize (1) - $15,000 USD awarded to the team with the 2nd best project&lt;/li&gt;
&lt;li&gt;3rd Place, Nebula Prize (1) - $10,000 USD awarded to the team with the 3rd best project&lt;/li&gt;
&lt;li&gt;Honorable Mention, Moonshot Prize (10) - $5,000 USD prize awarded to the next ten highest scoring entries following the Grand Prize, Andromeda Prize, and Nebula Prize&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are thirteen different ways you can get paid to build cool things with Postman, using any API you want, or series of APIs to design, integrate, automate, orchestrate, and build any API-driven solution you can think up—here is what you need to do to get involved with the hack.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://postman-hack.devpost.com/rules" rel="noopener noreferrer"&gt;Check out the official rules and FAQs for complete details&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://postman-hack.devpost.com/" rel="noopener noreferrer"&gt;Join the hack&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.postman.com/postman-galaxy/" rel="noopener noreferrer"&gt;Register for the free Postman Galaxy API conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://identity.getpostman.com/signup" rel="noopener noreferrer"&gt;Sign up for a Postman account&lt;/a&gt;, if you don’t already have one&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To help get your imagination going we’ve &lt;a href="https://postman-hack.devpost.com/details/inspiration" rel="noopener noreferrer"&gt;posted some inspirational projects as part of the hack details&lt;/a&gt;. You can also find &lt;a href="http://workspaces.apievangelist.com/" rel="noopener noreferrer"&gt;a list of 200+ workspaces for many different types of interesting APIs to help demonstrate what is possible when you use the right APIs&lt;/a&gt;. I’ll be helping judge the hack, so I can give you a little insight into what I will be looking for as part of the review process--I am looking for interesting usage of interesting APIs in a collaborative way. Meaning, spend the time to put just the right API or APIs to work in a way that delivers something useful or is just really cool. I am looking for developers to demonstrate they get APIs and they get Postman, and have done the hard work to solve a real world problem using APIs.&lt;/p&gt;

&lt;p&gt;Alright, that is the scoop. I just wanted to invite you to our hack, and see what you can build. I am going to spend the next 30 days leading up to Postman Galaxy thinking about and talking about this hack. So, if you need any further inspiration or have questions about how to put the Postman feel free to reach out to me personally on Twitter at &lt;a href="https://twitter.com/apievangelist" rel="noopener noreferrer"&gt;@apievangelist&lt;/a&gt;. I have a pretty deep knowledge of the different types of APIs available out there, and I enjoy pushing the limits of what is possible with the Postman platform. I am also not afraid to tell you your idea needs more work and point out the really interesting aspects of what you are building. So, consider this your official invitation to the hack, and to let you know I am here to help support you in your journey as you work to bring home one of the prizes. I look forward to seeing what you and your team builds, and having you part of the Galaxy conference in February.&lt;/p&gt;

</description>
      <category>api</category>
      <category>automation</category>
      <category>devchallenge</category>
      <category>news</category>
    </item>
  </channel>
</rss>
