ai-agent

Agent Orchestration

Agent orchestration coordinates multiple AI agents or tool calls in a structured workflow to complete complex, multi-step tasks that exceed a single LLM call.

A single LLM call can answer a simple question, but complex tasks — researching a topic across ten sources, extracting and comparing product data from multiple competitors, or filling out a web form based on retrieved information — require multiple steps and decisions. Agent orchestration frameworks (LangGraph, CrewAI, Anthropic's Agent SDK) chain LLM calls with tool use and branching logic to accomplish these tasks.

Orchestration patterns include: pipeline (sequential steps), router (a coordinator agent dispatches tasks to specialised sub-agents), and swarm (agents communicate peer-to-peer). Each pattern involves managing state (what has been done, what the results were), handling errors (retries, fallback agents), and synthesising outputs from multiple agents into a final result.

Web scraping is a foundational capability in agentic workflows. An orchestration framework that needs live data routes a sub-task to a scraping agent — using a tool like AlterLab's MCP server — and passes the structured result to the next agent in the pipeline.

Related Terms

Extract Agent Orchestration data from any website

AlterLab returns clean, structured data from any public URL — no scraper infrastructure needed. Start free, no credit card required.

View API docs

Your first scrape.
Sixty seconds.

$1 free balance. No credit card. No SDK.Just a POST request.

terminal
curl -X POST https://api.alterlab.io/v1/scrape \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "formats": ["markdown"]}'

No credit card required · Up to 5,000 free scrapes · Balance never expires

    Agent Orchestration — Web Scraping Glossary | AlterLab