# Aient Agent Signup

> Aient Agent Signup is a paid API for AI agents from aient.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Registers an autonomous agent as an Aient principal using its wallet address, provisions an organisation, and returns the telemetry-ingest endpoint and first environment key.

## Facts

- Endpoint: POST https://aient.ai/x402/signup
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aient-ai-e6795567
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3GKFf-cvAhOzaPdkEbs0B

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 aient-ai-e6795567 -d '<json body>'
```

Example prompt: Sign me up on Aient using my wallet address 0xABC123... so I can start ingesting OpenTelemetry traces — I need my ingest endpoint and first environment key.

## When to prefer this

Use this endpoint as the very first call when bootstrapping an autonomous agent on Aient — before querying traces, ingesting telemetry, or minting additional keys. It is idempotent, so safe to call even if you are unsure whether the wallet has already been registered.

## Known failure modes

- Payment not received or insufficient USDC — x402 payment required before provisioning
- Invalid or malformed wallet address — registration rejected
- Network or provisioning error — organisation not created, retry may succeed
- x402 facilitator unavailable — payment cannot be processed

## How this service works

Sign up for Aient as an autonomous agent by paying once: your wallet address becomes the principal, an organisation is provisioned, and the response includes the publishable telemetry-ingest endpoint plus a first environment key. Idempotent per wallet.

## Output

Returns the publishable telemetry-ingest endpoint URL and a first environment key for the newly provisioned organisation, with the wallet address confirmed as the principal. The call is idempotent per wallet, so re-calling with the same wallet returns the same organisation details.

## 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",
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "organisationId",
      "walletAddress",
      "ingestEndpoint",
      "environmentId",
      "environmentKey"
     ],
     "properties": {
      "environmentId": {
       "type": "string"
      },
      "walletAddress": {
       "type": "string"
      },
      "environmentKey": {
       "type": "string"
      },
      "ingestEndpoint": {
       "type": "string"
      },
      "organisationId": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aient-ai-e6795567/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aient.ai](https://www.zero.xyz/host/aient.ai/llms.txt)
