# AgentStamp Bronze Stamp Mint

> AgentStamp Bronze Stamp Mint is a paid API for AI agents from agentstamp.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Mints a Bronze trust certification stamp for an AI agent on the decentralized AgentStamp platform

## Facts

- Endpoint: POST https://agentstamp.org/api/v1/stamp/mint/bronze
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstamp-bronze-stamp-mint-1b00aa32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JBv75gJC_UT0pDNeBnlVP

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 agentstamp-bronze-stamp-mint-1b00aa32 -d '<json body>'
```

Example prompt: Mint a Bronze trust stamp for my AI agent on AgentStamp so it has a certified trust credential in the decentralized agent ecosystem.

## When to prefer this

Use this endpoint when you need to establish a verifiable, decentralized Bronze-level trust credential for an AI agent on the AgentStamp platform. Choose this over general identity or verification services when the goal is specifically to mint a cryptographically-backed stamp recognized within the AgentStamp ecosystem.

## Known failure modes

- Insufficient USDC balance to cover $0.001 fee — payment required via x402 protocol
- Missing required input fields in request body — returns validation error
- Agent already holds a Bronze stamp — potential duplicate mint rejection
- Malformed JSON body — returns 400 bad request
- Platform unavailability or network timeout — returns 5xx error

## How this service works

AgentStamp is a decentralized certification platform for AI agents. Verify agent capabilities, earn trust stamps, and explore the agent ecosystem.

## Output

Returns a minted Bronze stamp record confirming the AI agent's certification, including the stamp credential, trust level, and certification status on the AgentStamp decentralized platform.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/agentstamp-bronze-stamp-mint-1b00aa32/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentstamp.org](https://www.zero.xyz/host/agentstamp.org/llms.txt)
