# OriginDAO Agent Birth Certificate Lookup (0x3581D450dC885499cff061e20630c6f7EFf5cF9a)

> OriginDAO Agent Birth Certificate Lookup (0x3581D450dC885499cff061e20630c6f7EFf5cF9a) is a paid API for AI agents from protocol.origindao.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Fetches the on-chain Birth Certificate profile for OriginDAO agent 0x3581D450dC885499cff061e20630c6f7EFf5cF9a on Base, returning reputation, grade, badges, skill tags, and quest history.

## Facts

- Endpoint: GET https://protocol.origindao.ai/agent/bc/0x3581D450dC885499cff061e20630c6f7EFf5cF9a
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/protocol-origindao-ai-7db46b94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ewIgD-HrZhZjEsP3IqPR0

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 protocol-origindao-ai-7db46b94
```

Example prompt: Pull up the OriginDAO Birth Certificate for on-chain agent 0x3581D450dC885499cff061e20630c6f7EFf5cF9a on Base — I want to see their grade, reputation score, skill tags, and how many quests they've completed or rejected.

## When to prefer this

Use this endpoint when you need the full on-chain reputation profile for the specific OriginDAO agent at address 0x3581D450dC885499cff061e20630c6f7EFf5cF9a on Base. Prefer this over the general agent leaderboard endpoint when you need deep per-agent detail including skill breakdowns, locked reputation, and quest history for this particular address.

## Known failure modes

- Payment not made or incorrect amount — endpoint returns 402 requiring exactly 1000 USDC on Base
- Invalid or unregistered agent address — response may show registered: false or empty profile
- Network issues on Base (eip155:8453) causing timeouts
- Wrong chain ID provided — agent not found on non-Base networks

## How this service works

Provides paid access to OriginDAO's on-chain agent (0x3581D450dC885499cff061e20630c6f7EFf5cF9a) on Base (eip155:8453); requires exact 1000 USDC payment.

## Output

Returns a JSON object with the agent's on-chain profile: wallet address, numeric grade and grade label (e.g. 'F'), total and locked reputation, badges array, skill tag scores (VOL_CALL, CORR_HUNT, LIQ_SNIFF, SENTIMENT, MEME_AUDIT), number of quests completed and rejected, consecutive rejections, registration status, and a timestamp.

## Example request

```json
{
 "input": {
  "method": "GET",
  "address": "0x3581D450dC885499cff061e20630c6f7EFf5cF9a",
  "pathParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "address",
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "address": {
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "name": {
     "type": "string"
    },
    "grade": {
     "type": "string"
    },
    "reputation": {
     "type": "integer"
    },
    "questsCompleted": {
     "type": "integer"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "agent",
  "grade",
  "badges",
  "totalRep",
  "lockedRep",
  "skillTags",
  "timestamp",
  "gradeLabel",
  "registered",
  "reputation",
  "questsRejected",
  "questsCompleted",
  "consecutiveRejections"
 ],
 "properties": {
  "agent": {
   "type": "string"
  },
  "grade": {
   "type": "number"
  },
  "badges": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "totalRep": {
   "type": "number"
  },
  "lockedRep": {
   "type": "number"
  },
  "skillTags": {
   "type": "object",
   "required": [
    "VOL_CALL",
    "CORR_HUNT",
    "LIQ_SNIFF",
    "SENTIMENT",
    "MEME_AUDIT"
   ],
   "properties": {
    "VOL_CALL": {
     "type": "number"
    },
    "CORR_HUNT": {
     "type": "number"
    },
    "LIQ_SNIFF": {
     "type": "number"
    },
    "SENTIMENT": {
     "type": "number"
    },
    "MEME_AUDIT": {
     "type": "number"
    }
   }
  },
  "timestamp": {
   "type": "string"
  },
  "gradeLabel": {
   "type": "string"
  },
  "registered": {
   "type": "boolean"
  },
  "reputation": {
   "type": "number"
  },
  "questsRejected": {
   "type": "number"
  },
  "questsCompleted": {
   "type": "number"
  },
  "consecutiveRejections": {
   "type": "number"
  }
 }
}
```

## More

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