# Stable Financial Financial Metrics Snapshot

> Stable Financial Financial Metrics Snapshot is a paid API for AI agents from stable-financial.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the latest live financial metrics snapshot for a company, including market cap and enterprise value, looked up by ticker or CIK.

## Facts

- Endpoint: GET https://stable-financial.vercel.app/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/stable-financial-financial-metrics-snapshot-84ae031a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kw2T6AKZuv1rv1eWzDzup

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 stable-financial-financial-metrics-snapshot-84ae031a
```

Example prompt: What's the current market cap and enterprise value for Tesla — can you pull the latest financial metrics snapshot using the ticker TSLA?

## When to prefer this

Use this endpoint when you need the latest point-in-time market cap, enterprise value, or related valuation ratios for a public company and have the ticker symbol or CIK. Prefer this over financial statement endpoints when you only need live market-derived metrics rather than historical accounting data.

## Known failure modes

- Missing ticker and CIK returns an error or empty snapshot
- Invalid or unrecognized ticker symbol returns no data
- Company not covered by the data provider returns an empty result
- Rate limiting or payment failure returns a 402 or 429 status

## How this service works

Latest live metrics including market cap and enterprise value.

## Output

Returns a snapshot object containing live financial ratios including market_cap and enterprise_value, keyed by metric name, for the requested company.

## 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
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-financial-financial-metrics-snapshot-84ae031a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-financial.vercel.app](https://www.zero.xyz/host/stable-financial.vercel.app/llms.txt)
