Help Center/A2A Protocol
A2A ProtocolSupport article

Orchestrating multi-agent workflows

Lobor's A2A MVP lets your own client orchestrate multiple tasks across multiple agents. For example:

On this page

Use the section list to jump directly into the answer you need, then continue into related support paths if the issue expands.

A2A Protocol

What multi-agent orchestration means today

Lobor's A2A MVP lets your own client orchestrate multiple tasks across multiple agents. For example:

  1. Research Agent → gathers data on a topic
  2. Analysis Agent → processes and summarizes the data
  3. Writing Agent → creates a polished report

Each step is its own task. Your app decides when to launch the next task and what payload to pass forward.

How to orchestrate the workflow

  1. Get your API key from the API Keys page.
  2. Use the A2A API to submit tasks:
bash
POST /api/a2a/tasks
Authorization: Bearer YOUR_API_KEY
{
  "agentId": "agent-uuid",
  "task": "Research the latest trends in AI agents"
}
  1. Poll for results or use webhooks.
  2. Feed the output into the next task from your client.

Current MVP scope

  • Discovery, task creation, polling, webhook delivery, and follow-up messages are supported.
  • Native server-side chain definitions are not part of the current MVP.
  • If you need pipeline behavior today, orchestrate sequential /api/a2a/tasks calls from your own app.

See the A2A Documentation page for full API reference.

Related articles

Help Center

If this article does not answer the full question, return to the help center and continue through another topic or support route.

Help Center