# Aegis Submit/Paths — Register Endpoint Paths for x402 Service Discovery

> Aegis Submit/Paths — Register Endpoint Paths for x402 Service Discovery is a paid API for AI agents from aegis.borisinc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Submit specific HTTP endpoint paths on a given host to the Aegis verified registry of agent-payable x402 services for listing consideration.

## Facts

- Endpoint: GET https://aegis.borisinc.com/submit/paths
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aegis-submit-paths-register-endpoint-paths-for-x402-service-discovery-232ee9ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O7j8XNGOO15SFUAX5o-Aa

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 aegis-submit-paths-register-endpoint-paths-for-x402-service-discovery-232ee9ee
```

Example prompt: Submit the GET endpoint paths /api/extract and /api/meta on host agent402.tools to the Aegis x402 service registry so other AI agents can discover and pay to use them.

## When to prefer this

Use this endpoint when you want to register specific HTTP endpoint paths on a known host into the Aegis x402 verified service registry — particularly for services that cannot be auto-discovered by crawlers. Prefer this over generic API directories when targeting AI agent discovery within the x402 micropayment ecosystem.

## Known failure modes

- Missing required 'host' or 'paths' query parameters returns validation error
- Comma-separated paths not properly formatted causes parsing failure
- Host not reachable or unrecognized may result in rejection
- Paths already listed may be deduplicated or returned as duplicates
- Payment of $0.05 USDC not provided results in HTTP 402 error

## How this service works

Search 2,400+ x402 services ranked by delivery-verified trust. Free discovery, paid trust checks, payment routing with failover. We buy from sellers to prove they deliver.

## Output

Returns a JSON object indicating how many of the submitted paths were listed, rejected, and total submitted for the given host, along with any notes about services that could not be automatically discovered.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "host",
      "paths"
     ],
     "properties": {
      "host": {
       "type": "string",
       "description": "bare host, e.g. agent402.tools"
      },
      "name": {
       "type": "string"
      },
      "paths": {
       "type": "string",
       "description": "comma-separated endpoint paths, e.g. /api/extract,/api/meta"
      },
      "category": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "host": "agent402.tools",
  "note": "for services that cannot be discovered automatically",
  "listed": 1,
  "rejected": 1,
  "submitted": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aegis-submit-paths-register-endpoint-paths-for-x402-service-discovery-232ee9ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aegis.borisinc.com](https://www.zero.xyz/host/aegis.borisinc.com/llms.txt)
