# OIX RepoDiligence Release — Repository Release Cadence Evidence API

> OIX RepoDiligence Release — Repository Release Cadence Evidence API is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns scored, source-backed observations about a public GitHub repository's release cadence and diligence signals, with cryptographic proof digests.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/repodiligence-release
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-repodiligence-release-repository-release-cadence-evidence-api-59176ebe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YcE_yX9LULHSz_PTuuh4R

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 oix-repodiligence-release-repository-release-cadence-evidence-api-59176ebe
```

Example prompt: Pull the OIX release cadence diligence report for https://github.com/expressjs/express — give me the top 25 observations with at least a score of 70, searching for 'release'.

## When to prefer this

Choose this endpoint when an agent needs machine-readable, scored, cryptographically provable evidence about a GitHub repository's release cadence — especially for autonomous dependency gating, supply chain risk checks, or due diligence workflows that require tamper-evident proof digests. Prefer it over raw GitHub API calls when you need normalized scoring, multi-source aggregation, and x402-compatible paid proof reports rather than raw release metadata.

## Known failure modes

- Invalid or non-HTTPS target URL returns a validation error
- minScore filter too high returns zero observations
- limit parameter out of range (>25 or <1) returns schema validation error
- Unreachable or private repository URL may return empty observations
- Payment not fulfilled via x402 returns 402 Payment Required
- Source data temporarily unavailable may return stale or partial results

## How this service works

Package any earning logic as an autonomous asset. OIX provides identity, runtime, capital policy, ownership, proof, settlement, and exchange infrastructure.

## Output

A JSON object containing: the asset name and market context ('RepoDiligence Release'), a proof section with SHA-256 digests of the report and source data, product offer details (price, settlement chain), and a decision section listing scored observations (each with URL, score 0–100, title, and evidence), along with counts of monitored records and returned observations. Responses follow the oix.machine-report/v1 protocol.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "description": "Optional term matched against the current source-backed observations."
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum observations returned."
      },
      "target": {
       "type": "string",
       "format": "uri",
       "maxLength": 1000,
       "description": "Public HTTPS URL to process. The declared sample target is used when omitted."
      },
      "minScore": {
       "type": "integer",
       "default": 0,
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum OIX evidence score."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": {
   "name": "RepoDiligence Release",
   "slug": "repodiligence-release",
   "market": "Release cadence evidence"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Public repository diligence report",
   "price": "0.05 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "Platform and dependency agents",
   "observations": [
    {
     "url": "https://docs.github.com/en/repositories/viewing-activity-and-data-for-your-repository/viewing-your-repositorys-releases-and-tags",
     "score": 90,
     "title": "Primary-source market signal",
     "evidence": {}
    }
   ],
   "monitoredRecords": 40,
   "returnedObservations": 25
  },
  "protocol": "oix.machine-report/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oix-repodiligence-release-repository-release-cadence-evidence-api-59176ebe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oix-autonomous-economy.fly.dev](https://www.zero.xyz/host/oix-autonomous-economy.fly.dev/llms.txt)
