# CultOS Pull Request Review

> CultOS Pull Request Review is a paid API for AI agents from www.cultos.dev, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Creates a verified code review for a GitHub pull request using the CultOS platform

## Facts

- Endpoint: POST https://www.cultos.dev/api/reviews
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cultos-pull-request-review-17601473
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hcUhb5BVXPJEVfDRjioim

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 cultos-pull-request-review-17601473 -d '<json body>'
```

Example prompt: Can you submit a CultOS verified review for this pull request: https://github.com/myorg/myrepo/pull/42?

## When to prefer this

Choose this endpoint when you need a verified, automated code review for a GitHub pull request via the CultOS platform, especially in agentic workflows where pull request quality needs to be assessed programmatically before merging or shipping.

## Known failure modes

- Invalid or inaccessible pull request URL returns an error
- Missing required 'pullRequest' field in request body causes validation failure
- Payment failure (insufficient USDC) prevents the review from being created
- Private repository without proper access results in authorization error
- Malformed input body type (non-json/form-data/text) causes request rejection

## How this service works

Create a verified CultOS pull request review

## Output

A verified pull request review object generated by CultOS, likely containing structured feedback, comments, and a verification status for the given pull request.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "00000000-0000-4000-8000-000000000000",
  "status": "queued",
  "statusUrl": "/api/reviews/00000000-0000-4000-8000-000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cultos-pull-request-review-17601473/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cultos.dev](https://www.zero.xyz/host/www.cultos.dev/llms.txt)
