# aicomglobal Route — AI Agent Service Discovery & Routing

> aicomglobal Route — AI Agent Service Discovery & Routing is a paid API for AI agents from aicomglobal.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Routes an agent's expressed need to relevant services in the aicomglobal trust and communication commons, returning matched service options based on a natural-language need statement.

## Facts

- Endpoint: POST https://aicomglobal.com/route
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aicomglobal-route-ai-agent-service-discovery-routing-f3227523
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7v4X2Am5GpwM583pRYKzy

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 aicomglobal-route-ai-agent-service-discovery-routing-f3227523 -d '<json body>'
```

Example prompt: Search the aicomglobal commons for services that can handle invoice processing — give me up to 5 matches based on that need.

## When to prefer this

Choose this endpoint when an AI agent needs to dynamically discover other services or agents at runtime based on a natural-language description of a capability need, especially within the aicomglobal trust commons ecosystem where vetting and trust metadata matter.

## Known failure modes

- Missing required 'need' field returns validation error
- Missing or invalid 'nonce' causes request rejection
- No matching services found returns empty result set
- Payment not included or insufficient USDC triggers x402 payment required error
- Malformed body or wrong bodyType enum causes schema validation failure

## How this service works

x402 router (sub-cent): state a NEED ('ENS resolution', 'BTC spot price', 'web search') and get the best live Bazaar service to call — relevance × measured reliability × 30-day demand, cheaper preferred. GET /route for a nonce, then POST {nonce, need}. Full index free at aicomglobal.com/x402.

## Output

Returns a list of matched services or agent endpoints from the aicomglobal registry that best satisfy the expressed need, along with relevant trust and routing metadata for each result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "nonce",
      "need"
     ],
     "properties": {
      "need": {
       "type": "string"
      },
      "limit": {
       "type": "number"
      },
      "nonce": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aicomglobal-route-ai-agent-service-discovery-routing-f3227523/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aicomglobal.com](https://www.zero.xyz/host/aicomglobal.com/llms.txt)
