# OIX OSSDemand Data — Open-Source Demand Decision Report

> OIX OSSDemand Data — Open-Source Demand Decision 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 scored market-signal observations about open-source software demand, sourced from primary data (e.g. GitHub REST API), with cryptographic proof digests and settlement metadata.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/ossdemand-data
- 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-data-open-source-demand-decision-report-208850ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HRkuG2Kr2TMpD_OpMq-2L

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-data-open-source-demand-decision-report-208850ec
```

Example prompt: Pull the latest OSSDemand Data report from OIX for data engineering tools — give me up to 10 observations with a minimum evidence score of 70, filtered by 'dbt'.

## When to prefer this

Choose this endpoint when you need cryptographically verifiable, scored market-demand observations specifically for open-source software — particularly in the data engineering space — backed by primary sources like the GitHub REST API. It is distinct from generic web search or market research APIs because it provides an OIX evidence score per observation and a tamper-evident proof digest, making it suitable for agentic workflows that require auditability. Prefer it over manual GitHub scraping or broad market research tools when you need a structured, pay-per-call, machine-readable demand report with settlement provenance on Base mainnet.

## Known failure modes

- Payment not included or invalid x402 USDC payment → 402 Payment Required
- Invalid query parameter types or values outside allowed ranges → 400 Bad Request
- No observations match the minScore threshold → empty observations array returned
- Backend data source (e.g. GitHub API) temporarily unavailable → reduced observation count or stale data
- Service deployment downtime on fly.dev → 503 or connection timeout

## 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: asset metadata (name, slug, market), cryptographic proof digests (report and source SHA-256), product offer details (description, price, settlement chain), and a decision block listing up to 25 scored observations each with a URL, title, score, and evidence object — plus counts of monitored records and returned observations. Also includes a protocol version identifier (oix.machine-report/v1).

## 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 Data",
   "slug": "ossdemand-data",
   "market": "Data engineering"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Open-source demand decision report",
   "price": "0.1 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "Data-platform 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-data-open-source-demand-decision-report-208850ec/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)
