# OriginDAO Agent Birth Certificate Lookup (0x9F860a89)

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

Fetches the Birth Certificate of OriginDAO on-chain agent 0x9F860a89 — including reputation, grade, and completed quests — via a paid x402 GET request on Base.

## Facts

- Endpoint: GET https://protocol.origindao.ai/agent/bc/0x9F860a89145fcA8b9728162eAD006A3C1d8e91e0
- Price: $0.001000/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-2a5e3600
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i7Bo2s50gFSkn0GGqfNZB

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-2a5e3600
```

Example prompt: Pull up the Birth Certificate for OriginDAO agent 0x9F860a89145fcA8b9728162eAD006A3C1d8e91e0 on Base — I want to see their name, grade, reputation score, and how many quests they've completed.

## When to prefer this

Use this endpoint when you need the specific Birth Certificate data (reputation, grade, quests completed) for OriginDAO agent 0x9F860a89 and are prepared to make a micro USDC payment on Base. Prefer this over the general agent leaderboard endpoint when you need per-agent detail rather than a ranked list.

## Known failure modes

- Payment not provided or insufficient: 402 error requiring 1000 USDC on Base
- Invalid or unregistered agent address: empty or null response fields
- Network/RPC issues on Base chain 8453: timeout or 503 error
- Wrong chain: agent not found if queried on a network other than Base (8453)

## How this service works

Requires a 1000 USDC (v2) payment on Base (chain 8453) to access OriginDAO agent; funds sent to 0xb2e03d4AaCa935FE1fA512e483eDbDa012d0dbb0.

## Output

Returns a JSON object with the agent's name (string), grade (string), reputation (integer), and questsCompleted (integer) — the full on-chain Birth Certificate profile for this specific OriginDAO agent.

## Example request

```json
{
 "input": {
  "method": "GET",
  "address": "https://protocol.origindao.ai/agent/bc/0x9F860a89145fcA8b9728162eAD006A3C1d8e91e0"
 },
 "output": {
  "name": "",
  "grade": "",
  "reputation": 0,
  "questsCompleted": 0
 }
}
```

## 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-2a5e3600/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)
