# TensorFeed OpenRouter Model Fact Card

> TensorFeed OpenRouter Model Fact Card is a paid API for AI agents from tensorfeed.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a structured LLM-ready fact card for a single OpenRouter model, including normalized pricing and capability flags.

## Facts

- Endpoint: GET https://tensorfeed.ai/api/premium/clean/openrouter/anthropic%2Fclaude-haiku-4.5
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tensorfeed-ai-161869f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CcIrLrGZ8VehJTfy2bste

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 tensorfeed-ai-161869f9
```

Example prompt: Pull the fact card for anthropic/claude-haiku-4.5 from OpenRouter — I want to see normalized pricing in USD per million tokens, the blended 5-to-1 mix cost, and whether it supports tools, vision, structured outputs, and reasoning.

## When to prefer this

Use this endpoint when you need a single, clean, normalized fact card for one specific OpenRouter model — especially when you need pricing in a consistent USD-per-million-tokens format with blended mix and capability flags. Prefer this over scraping OpenRouter directly or using a bulk catalog call when you only need one model's details.

## Known failure modes

- Model ID not found in OpenRouter catalog — 404 or empty response
- Model ID contains slash and was not URL-encoded — malformed URL or wrong model returned
- Payment of $0.02 USDC not completed — 402 Payment Required
- OpenRouter catalog not refreshed yet for the day — stale or missing data
- Invalid or malformed model ID — error response

## How this service works

One model from the daily 367-entry OpenRouter catalog as an LLM-ready fact card. Pricing normalized to USD per million tokens with a derived blended_5_to_1 mix. Capability flags (tools, vision, structured_outputs, reasoning) extracted from supported_parameters plus modality. Pass the model id (URL-encoded if it contains a slash) as the URL path segment.

## Output

A structured JSON fact card for the requested model containing: normalized USD-per-million-token pricing, a derived blended_5_to_1 pricing mix, and boolean capability flags for tools, vision, structured_outputs, and reasoning, extracted from the live OpenRouter catalog entry.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "model_id"
     ],
     "properties": {
      "model_id": {
       "type": "string",
       "description": "OpenRouter model id, URL-encoded. Format: provider/model-slug."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tensorfeed-ai-161869f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tensorfeed.ai](https://www.zero.xyz/host/tensorfeed.ai/llms.txt)
