# Canopy Finance Investment Factor Score

> Canopy Finance Investment Factor Score is a paid API for AI agents from wintel.canopy.finance, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns an event-driven investment factor score with framework scores, headline investment rating, and metric-level breakdown for a country, cryptocurrency, or stock.

## Facts

- Endpoint: GET https://wintel.canopy.finance/x402/v1/score/country/MY
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/canopy-finance-investment-factor-score-7604099c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bBzTsit3BqpWAArsdBMdb

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 canopy-finance-investment-factor-score-7604099c
```

Example prompt: What is Canopy Finance's investment factor score and rating for Malaysia (country code MY)? I want the full framework score breakdown.

## When to prefer this

Use this endpoint when you need a structured, quantitative, event-driven investment factor score with rating and metric breakdown for a specific country, cryptocurrency, or stock. Prefer this over general news or sentiment APIs when you need a composite investment score grounded in framework-level factor analysis rather than raw text sentiment.

## Known failure modes

- Invalid asset_type enum value returns a 400 validation error
- Unknown or unsupported asset_id (e.g. unrecognized ticker or country code) returns a 404 or empty result
- Insufficient payment or missing x402 payment header returns a 402 Payment Required
- Rate limiting or service unavailability returns a 503

## How this service works

Event-driven investment factor score: framework scores, headline investment score, rating, and metric-level breakdown for a country, cryptocurrency, or stock.

## Output

Returns a structured JSON object containing a headline investment score, a rating label (e.g. Buy/Hold/Sell or equivalent), individual framework scores, and a metric-level breakdown that shows how each underlying factor contributed to the overall score for the requested country, crypto, or stock.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "asset_type",
      "asset_id"
     ],
     "properties": {
      "asset_id": {
       "type": "string",
       "description": "ISO country code (MY), CoinGecko id (bitcoin), or stock ticker (AAPL)"
      },
      "asset_type": {
       "enum": [
        "country",
        "crypto",
        "stock"
       ],
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/canopy-finance-investment-factor-score-7604099c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wintel.canopy.finance](https://www.zero.xyz/host/wintel.canopy.finance/llms.txt)
