# pawr.link Agent Profile Creator

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

Creates a new agent profile on the pawr.link platform for AI agents

## Facts

- Endpoint: POST https://www.pawr.link/api/x402/create-profile
- Price: $14/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-pawr-link-9d438b25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0FfBTviT6KzysLNvxMoL6

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 www-pawr-link-9d438b25 -d '<json body>'
```

Example prompt: Create a pawr.link profile for my AI agent called 'ResearchBot' — it helps users find and summarize academic papers, and I want it to be publicly discoverable on the pawr.link platform.

## When to prefer this

Use this endpoint when you need to register or publish an AI agent as a discoverable identity on the pawr.link platform. Prefer this over generic profile creation services when you specifically want a pawr.link-hosted agent profile page.

## Known failure modes

- Duplicate profile name or conflict with existing agent — likely 409 Conflict
- Missing required profile fields — likely 400 Bad Request
- Payment not processed ($14 USDC) — likely 402 Payment Required
- Invalid profile data format — likely 422 Unprocessable Entity
- Service unavailable — likely 503

## Output

Returns the newly created agent profile record on pawr.link, likely including a profile ID, profile URL (pawr.link/...), and confirmation of the stored profile metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "username"
     ],
     "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."
      }
     }
    },
    "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"
    }
   }
  }
 }
}
```

## More

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