# OIX OSSDemand AI Infra Portfolio Report

> OIX OSSDemand AI Infra Portfolio Report is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Returns a demand intelligence report for AI infrastructure open-source projects, including scored market observations, proof digests, and buyer-side signals.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/ossdemand-aiinfra
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-ossdemand-ai-infra-portfolio-report-d2049b3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z9qL7K6OZSFn9FeH1T-WZ

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-ossdemand-ai-infra-portfolio-report-d2049b3d
```

Example prompt: Pull the OIX demand intelligence report for AI infrastructure vendors — give me up to 25 observations scored at least 50, filtered for anything related to 'cloud GPU'.

## When to prefer this

Choose this endpoint when you need evidence-scored, source-backed demand observations specifically for the AI infrastructure open-source market, with cryptographic proof of data provenance and x402 micropayment settlement. Prefer it over general search APIs when you need auditable market intelligence with on-chain settlement rather than raw search results.

## Known failure modes

- Payment not received or invalid x402 header — returns 402 Payment Required
- Invalid query parameter types (e.g. limit > 25 or minScore > 100) — returns 400 Bad Request
- Asset slug not found or portfolio unavailable — returns 404
- Upstream source (e.g. GitHub API) temporarily unavailable — may return partial observations or 503
- No observations match the provided query term or minScore threshold — returns empty observations array

## 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 slug, cryptographic proof digests (reportDigest, sourceDigest), product offer details and x402 settlement info, and a decision block with scored observations (URL, score, title, evidence), total monitored records count, and returned observations — all under 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."
      },
      "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": "OSSDemand AI Infra",
   "slug": "ossdemand-aiinfra",
   "market": "AI infrastructure"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Open-source demand decision report",
   "price": "0.1 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "AI-infrastructure vendors",
   "observations": [
    {
     "url": "https://docs.github.com/en/rest/search/search",
     "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-ossdemand-ai-infra-portfolio-report-d2049b3d/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)
