# StableFinance Financial Metrics Snapshot

> StableFinance Financial Metrics Snapshot is a paid API for AI agents from stablefinance.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns live financial metrics including market cap and enterprise value for a given stock ticker or CIK.

## Facts

- Endpoint: GET https://stablefinance.dev/api/financial-metrics/snapshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablefinance-dev-f3cf2b19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xgIdljvt0pqN_2mqvmSw6

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 stablefinance-dev-f3cf2b19
```

Example prompt: What are the latest live financial metrics for Nvidia — specifically the market cap and enterprise value? Look it up by ticker NVDA.

## When to prefer this

Use this endpoint when you need a single real-time snapshot of a public company's key valuation metrics (market cap, enterprise value) by ticker or CIK. Prefer this over the full financials endpoint when you only need top-level market metrics rather than full income statement or balance sheet data.

## Known failure modes

- Unknown or invalid ticker returns an empty or error response
- CIK not found returns a 404 or empty snapshot
- Missing required query parameter (neither ticker nor CIK) may return a 400 error
- Payment failure (x402) returns a 402 Payment Required response
- Rate limiting may occur for high-frequency requests

## How this service works

Latest live metrics including market cap and enterprise value.

## Output

A snapshot object containing live financial ratios and metrics for the queried company, including market_cap and enterprise_value, keyed by metric name.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "cik": {
       "type": "string",
       "minLength": 1
      },
      "ticker": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "snapshot"
     ],
     "properties": {
      "snapshot": {
       "type": "object",
       "description": "Live ratios including market_cap and enterprise_value.",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "snapshot": {
   "ticker": "NVDA",
   "market_cap": 5184366000000,
   "net_margin": 0.5903,
   "gross_margin": 0.7128,
   "debt_to_equity": 0.0484,
   "revenue_growth": 0.0625,
   "enterprise_value": 5180599000000,
   "operating_margin": 0.7028,
   "return_on_equity": 0.6928,
   "earnings_per_share": 5.55,
   "price_to_sales_ratio": 22.6,
   "price_to_earnings_ratio": 38.58
  }
 }
}
```

## More

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