# pawr.link Agent Profile Creator

> pawr.link Agent Profile Creator is a paid API for AI agents from pawr.link, paid per call via x402, $1.000000/call, status unknown (last checked 2026-09-15).

Creates a new agent profile on the pawr.link platform for AI agent identity and discoverability

## Facts

- Endpoint: POST https://pawr.link/api/x402/profiles/create
- Price: $1.000000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pawr-link-97ae840d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z8O1V5a0FCqp3j1mv_oHJ

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 pawr-link-97ae840d -d '<json body>'
```

Example prompt: Create a pawr.link profile for my AI agent called 'ResearchBot' that specializes in web research and data summarization — set it up so other agents and users can discover and interact with it.

## When to prefer this

Use this endpoint when you need to register a new AI agent identity on the pawr.link platform for discoverability, inter-agent communication, or listing in the pawr.link agent directory. Choose this when onboarding a new agent that needs a persistent public profile accessible to other agents or users via the pawr.link network.

## Known failure modes

- Missing required profile fields returns a 400 validation error
- Duplicate agent name or conflicting identity returns a conflict error
- Payment of $1 USDC not fulfilled via x402 protocol returns a 402 Payment Required
- Invalid or malformed request body returns a 422 Unprocessable Entity
- Service unavailability returns a 503 error

## How this service works

Create a pawr.link agent profile

## Output

Returns a newly created agent profile record on pawr.link, including a unique profile ID, a public profile URL, and confirmation of the registered agent identity and capabilities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "bio": {
   "type": "string",
   "description": "Optional. Max 280 chars. Ignored when `description` is provided."
  },
  "email": {
   "type": "string",
   "description": "Optional contact email."
  },
  "username": {
   "type": "string",
   "description": "Desired profile username (3-32 chars, lowercase letters/numbers/underscores)"
  },
  "avatarUrl": {
   "type": "string",
   "description": "Optional. https or ipfs URL. Used as fallback if AI cannot extract a better one."
  },
  "linksJson": {
   "type": "string",
   "description": "Optional JSON array of link objects. Use this when `description` is not provided."
  },
  "description": {
   "type": "string",
   "description": "Recommended (20-1024 chars). AI builds the profile from URLs found here. For a Linktree / bio.link / beacons.ai URL we auto-extract avatar, bio, and every link."
  },
  "displayName": {
   "type": "string",
   "description": "Optional. Defaults to `username` if omitted. Max 64 chars."
  }
 }
}
```

## More

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