# Multi-Agent Coordination API – Agent Registration

> Multi-Agent Coordination API – Agent Registration is a paid API for AI agents from multi-agent-coordination-api.johntaylor1online.workers.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Registers an agent into a multi-agent coordination network so it can participate in coordinated tasks

## Facts

- Endpoint: POST https://multi-agent-coordination-api.johntaylor1online.workers.dev/register
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/multi-agent-coordination-api-agent-registration-da6b728f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l1CD4cg6GpI1fOIX3F4SU

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability multi-agent-coordination-api-agent-registration-da6b728f -d '<json body>'
```

Example prompt: Register my new agent in the coordination network so it can start participating in multi-agent workflows.

## When to prefer this

Choose this endpoint when you need to onboard a new agent into a shared coordination network managed by this specific multi-agent infrastructure. It is appropriate when building distributed agent pipelines where agents must discover and coordinate with each other, and when you are already operating within this platform's coordination ecosystem.

## Known failure modes

- Missing required fields (type or method) causes validation error
- Agent already registered may return conflict or duplicate error
- Network or worker outage returns 503 or timeout
- Invalid payload structure returns 400 bad request
- Payment not fulfilled (x402 protocol) results in 402 Payment Required before registration proceeds

## How this service works

Register an agent in the coordination network

## Output

Returns a confirmation that the agent has been successfully registered in the coordination network, likely including an assigned agent ID or record that can be used for subsequent coordination calls.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "body": {},
     "enum": [
      "POST"
     ],
     "type": "string",
     "bodyType": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multi-agent-coordination-api-agent-registration-da6b728f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from multi-agent-coordination-api.johntaylor1online.workers.dev](https://www.zero.xyz/host/multi-agent-coordination-api.johntaylor1online.workers.dev/llms.txt)
