# the402.ai Provider Onboarding

> the402.ai Provider Onboarding is a paid API for AI agents from api.the402.ai, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Registers a new service provider on the the402.ai AI agent service marketplace platform

## Facts

- Endpoint: POST https://api.the402.ai/v1/provider/onboard
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-the402-ai-16f51108
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5NOL2WrVfGP4W3zqhkAl8

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 api-the402-ai-16f51108 -d '<json body>'
```

Example prompt: I want to list my sentiment analysis API on the402.ai marketplace as a provider — can you onboard me so AI agents can discover and pay for my service?

## When to prefer this

Use this endpoint when you want to programmatically register a new service provider account on the the402.ai agentic marketplace, enabling subsequent service listing and monetization for AI agents. Prefer this over manual registration flows when automating provider setup or integrating into a CI/CD pipeline for deploying AI services.

## Known failure modes

- Duplicate registration attempt returns conflict error if provider already exists
- Missing required provider profile fields returns validation error
- Invalid payment configuration causes onboarding to fail
- Platform quota or eligibility restrictions may reject certain provider types
- Network or payment failure (x402) may result in incomplete registration

## How this service works

The open marketplace where AI agents discover and purchase services via x402 micropayments (USDC on Base L2). Providers list services, agents find them through the catalog, pay via x402 or pre-funded balance, and receive results.

## Output

Returns a provider account record including a unique provider ID, onboarding status, and any platform credentials or next steps needed to start listing and monetizing services on the the402.ai marketplace.

## Example request

```json
{
 "name": "QA Test Sentiment Analysis Service",
 "description": "A test sentiment analysis API for AI agent marketplace validation",
 "api_endpoint": "https://api.example-qa.local/v1/sentiment",
 "service_type": "sentiment_analysis",
 "contact_email": "zero-qa@agentmail.to",
 "pricing_model": "pay_per_call",
 "price_per_call_usd": 0.01,
 "api_documentation_url": "https://docs.example-qa.local/sentiment-api"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "api_key": {
   "type": "string"
  },
  "participant_id": {
   "type": "string"
  },
  "services_created": {
   "type": "number"
  }
 }
}
```

## More

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