VOOZH about

URL: https://thenewstack.io/case-study-ai-agent-cuts-api-connector-dev-time-to-minutes/

⇱ Case Study: AI Agent Cuts API Connector Dev Time to Minutes - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2025-04-15 14:00:16
Case Study: AI Agent Cuts API Connector Dev Time to Minutes
sponsor-tabnine,sponsored-topic,
AI Agents / API Management / Software Development

Case Study: AI Agent Cuts API Connector Dev Time to Minutes

Fractional AI’s AI-powered API connector builder reduced data integration work from days to mere minutes for Airbyte customers
Apr 15th, 2025 2:00pm by Loraine Lawson
👁 Featued image for: Case Study: AI Agent Cuts API Connector Dev Time to Minutes

Image by Getty Images via Unsplash

The software development company Fractional AI believes that AI’s biggest winners will be the non-AI companies that use generative AI to make their operations more efficient and to improve their products.

To that end, Fractional AI created an AI agent for open source data integration company Airbyte that builds connectors for API integrations. But instead of taking days to hand code, these AI-created connectors are made in mere minutes.

“We’re growing really fast, and it’s been fun,” Chris Taylor, CEO of Fractional AI, told The New Stack. “Been a lot of fun [working] on a lot of cool projects at the forefront.”

Airbyte is an open source data integration engine for moving data to warehouses, data lakes or databases. It’s often used to extract data from Software as a Service products, which of course requires connectors to those SaaS APIs.

For example, if someone wanted to combine Shopify sales data with ZenDesk customer support, Airbyte could be used to set up a data pipeline to extract the customer data from Shopify and the customer support tickets from Zendesk to load it all into a data warehouse.

Airbyte already had a library of connectors to support that integration work — but the company envisioned simplifying the creation of thousands more connectors to SaaS products.

“Their software is pulling data out of third-party SaaS tools and moving data into data warehouses,” Eddie Siegel, Fractional AI’s CTO, told The New Stack. “They need to build an integration with every third-party SaaS tool type tool that might exist.”

Airbyte calls the solution AI Assistant, and it’s working well. Since the tool’s release, significantly more connectors have been added to its library.

Building APIs Pre-AI

Building Airbyte’s solution wasn’t as simple as handing API documentation to the AI tool. Airbyte wanted an automated solution that would scan the API documentation, which tends to be somewhat randomly structured.

“What we realized was these developer-facing API docs are extremely complicated websites,” Siegel said. “They’re the kinds of pages that Google doesn’t index very well; they’re highly dynamic. They’re not designed by someone that wants it to be well indexed.”

API documentation isn’t standardized and can often be thick and dense reading material. Crawling these documents ended up being an unexpectedly complex problem Fractional had to solve before it could even involve the AI.

“They’re not making it very easily readable by web crawlers,” Siegel said.

Due to the context window size, he added, “The process of tuning the crawling was maybe an order of magnitude more difficult than we expected going in on the AI side of things.”

Once the documentation is poured through, developers face a lot of manual coding. The time-consuming, complex process diverted technical talent from higher-value work, as the case study on Fractional AI’s website noted.

The AI/Developer Workflow

The resulting workflow allows users to input the URL for the API with which they are trying to integrate. The AI Connector Builder crawls those API documents, then pre-populates all the fields about the connector, such as the API URL base and authentication.

The AI Connector Builder then presents the full list of streams for that API — for example, for Shopify, the streams might include “orders,” “fulfillments,” and “discounts.”

The user then selects the streams of interest and for each stream selected, the Builder pre-populates each field (pagination, URL path, etc.) for those streams into Airbyte’s connector builder UI. The user can then review the AI’s draft and make edits or corrections before finalizing the connector.

So, basicall,y the ultimate workflow for the AI tooling has five parts:

  1. Scrape the documentation page.
  2. Large language model-powered crawling engine finds additional pages to scrape.
  3. Convert HTML to markdown and remove as much noise as possible.
  4. Extract the appropriate sections from the scraped pages and include them in carefully crafted, purpose-built prompts.
  5. Translate LLM output into appropriate sections of connector definitions.

An AI Assistant Under the Hood

Under the hood, AI Assistant leverages GPT-4o. The team explored 4o-mini and a fine-tuned version of the 4o-mini but only ended up using 4o-mini for integration tests. Claude was also considered, but GTP-4o was chosen because of its strict structured output capabilities, the case study noted.

Fractional AI used OpenAI’s software development kit (SDK) to stitch together the prompts.

The first step is reading the API documents. The AI system starts with, “Is there an OpenAPI spec?” If so, it can pull the authentication parameters directly from the OpenAPI specs.

But if there’s no OpenAPI spec, Fractional AI crawls the API documentation using the AI search tool Jina AI and Firecrawl, which is an API service that takes a URL, crawls it and converts it into clean markdown or structured data.

“Finally, if we are unable to extract the information using the OpenAPI spec, Firecrawl, or Jina, we use a combination of services,” such as Serper, a web scraper, and  Perplexity, the AI search engine, “as a last-ditch effort to find relevant information to input to later LLMs,” the case study noted.

The second step is to extract the relevant API connector sections. If the document is so large that it exceeds the context window, Fractional AI uses OpenAI’s built-in retrieval augmented generation (RAG) functionality to extract sections in the documentation related to authentication.

For smaller documents, Fractional built a flow to first extract links from the HTML then ask an LLM which links look related to authentication, then it embeds the content of the scraped pages into future prompts.

Finally, the process involves parsing and prompting the exact details from the HTML chunks. The challenge was coercing the LLM output into the exact format needed for the connector builder specification. Fractional’s solution was to “prompt with structured output to determine the authentication method in the specific format to populate the connector builder.”

Other tools used in the final solution were Langsmith, which is a platform that helps developers build, debug, test and monitor LLM applications, for observability and experimentation. Fractional also leveraged OpenAI’s built-in vector store, where RAG was required, and Redis was leveraged for caching and locking.

“We use the catalog of existing Airbyte connectors as benchmarks to measure the accuracy of the AI-powered Connector Builder and improve quality,” the Fractional AI case study noted.

Although the case study doesn’t detail the test data, it notes that preparing it “took significant effort … and should be a significant focus for any applied AI project.”

In the final analysis, Fractional AI’s case study stated there are “many high-ROI places where the right AI applications can dramatically increase developer productivity.”

“Both an engineering and an AI problem: This project is a good reminder that the challenges getting AI into production aren’t pure issues from wrangling LLMs,” the team wrote. “In this case, quality crawling — a challenge as old as Google — posed a major challenge.”

Our goal at Tabnine is to create and deliver a top-to-bottom AI-assisted development workflow that empowers all code creators, in all languages, from concept through to completion.
Learn More
The latest from Tabnine
TRENDING STORIES
Loraine Lawson is a veteran technology reporter who has covered technology issues from data integration to security for 25 years. Before joining The New Stack, she served as the editor of the banking technology site Bank Automation News. She has...
Read more from Loraine Lawson
SHARE THIS STORY
TRENDING STORIES
Google is a sponsor of The New Stack.
TNS owner Insight Partners is an investor in: OpenAI.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.