Need assistance with automated video generation using AI agent and APIs

Hi there!

I’m working on building an automated system that creates videos but I keep running into problems. My goal is to use an AI agent to handle the whole process automatically but it keeps giving me this error message:

“The issue is that I don’t have a direct tool to execute HTTP requests like curl or make API calls.”

Here’s what I’m trying to accomplish with my automation:

  1. Find and grab travel videos from Pexels API
  2. Get Claude AI to write short motivational quotes about travel (around 2 sentences each)
  3. Combine everything using Creatomate API to make vertical videos (9:16 ratio) with the text overlaid on the video
  4. Save the final video file to my local machine

I already have the Creatomate API key ready to use. Has anyone dealt with similar API integration issues before? Would really appreciate any guidance on how to fix this!

i think u nailed it! pythons requests or postman is def the way to go. make sure ur API keys are right too, that can trip ya up a lot. good luck!

u got it! it’s all about breaking things apart. AI agents aren’t great with HTTP stuff. using something like zapier or make.com to connect your APIs can save ya a ton of hassle. keep it simple and avoid those errors!

Your problem is trying to make an AI agent handle HTTP requests when it’s not built for that. I hit this same wall last year and the fix is way simpler than you’d think. Don’t make your AI agent run the whole pipeline - just use it for one piece. Build a basic Node.js or Python app to be your main controller instead. It’ll handle the HTTP calls no problem: grab videos from Pexels, send that data to Claude for quotes, then push everything to Creatomate for rendering. Here’s what I learned - AI agents are great at generating content and making decisions, but they suck at network requests and file handling. Once I split those jobs up, everything ran way smoother. Plus you’ll get actual error handling and can retry failed API calls properly.

Your AI agent can’t make HTTP calls - that’s a common limitation.

I’ve built similar video workflows and honestly, getting an AI agent to handle API orchestration is way more complicated than needed. You’ll fight rate limits, error handling, and file management constantly.

You need a proper automation platform that handles API calls reliably. I use Latenode for exactly this because it has native integrations and chains APIs together without the headaches.

Latenode lets you:

  • Pull videos from Pexels API automatically
  • Generate motivational quotes
  • Send everything to Creatomate
  • Download finished videos to your system

Runs on autopilot once you set it up. No more error messages about missing HTTP tools or forcing your AI agent to do things it wasn’t designed for.

I switched after wasting too much time debugging API connections. Now my video workflows just work.

You’re hitting this error because you’re trying to make your AI agent handle API calls directly. Been there - ran into the exact same mess when I started automating content creation. Here’s what fixed it for me: split everything into separate pieces. Build a Python script that handles all the API stuff outside your AI agent. Let the AI focus on what it’s good at - making content. Set up three parts: one module hits Pexels with the requests library, another calls Claude’s API for text, and a third sends everything to Creatomate. Connect them with solid error handling and retry logic. This completely sidesteps those HTTP tool problems. Your AI generates quotes from the video data, then hands it off to your API handler. Way more reliable than forcing an AI agent to do network stuff it wasn’t built for.