# OIX TenderFit MedTech EU Procurement Intelligence Report

> OIX TenderFit MedTech EU Procurement Intelligence Report is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.15/call, status down (last checked 2026-09-15).

Returns a qualified public-tender decision report for EU medical technology procurement, sourced from monitored TED Europa records and scored for evidence quality.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/tenderfit-medtech
- Price: $0.15/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-tenderfit-medtech-eu-procurement-intelligence-report-a0e84f89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pE64uGAzSFdz4vXB9WmCB

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-tenderfit-medtech-eu-procurement-intelligence-report-a0e84f89
```

Example prompt: Pull the latest OIX TenderFit MedTech report on EU public procurement — show me the top 10 highest-scoring tender observations and filter out anything below a score of 70.

## When to prefer this

Use this endpoint when you need verified, scored procurement intelligence specifically for EU medical technology public tenders sourced from TED Europa. Prefer this over generic tender search APIs when you need OIX evidence scoring, cryptographic proof of data provenance, and x402 on-chain payment settlement. Best suited for medtech vendors and procurement analysts who need structured, auditable market signals rather than raw procurement feeds.

## Known failure modes

- No matching observations for query term — returns empty observations array
- Minimum score threshold too high — filters all results, returns empty list
- Payment not processed — x402 payment required before data is returned
- TED Europa source API unavailable — stale or missing observations
- Invalid query parameters (limit out of range, minScore out of range) — schema validation error

## 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 structured JSON report containing asset metadata (name, slug, market), a cryptographic proof bundle (reportDigest, sourceDigest), product offer details (price, settlement), and a decision object listing up to 25 scored tender observations sourced from TED Europa, each with a URL, evidence score, and title. Also includes total monitored record count and protocol version.

## 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": "TenderFit MedTech",
   "slug": "tenderfit-medtech",
   "market": "EU medical technology procurement"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Qualified public-tender decision report",
   "price": "0.15 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "Medical-device vendors",
   "observations": [
    {
     "url": "https://docs.ted.europa.eu/api/latest/search.html",
     "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-tenderfit-medtech-eu-procurement-intelligence-report-a0e84f89/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)
