# StableFinance Screener Filter Metadata

> StableFinance Screener Filter Metadata 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 the list of available metric fields and comparison operators that can be used in the StableFinance stock screener.

## Facts

- Endpoint: GET https://stablefinance.dev/api/financials/search/screener/filters
- 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-screener-filter-metadata-f3cd44d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IaHDWWycNzo5929I3k8Jc

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-screener-filter-metadata-f3cd44d3
```

Example prompt: What metric fields and comparison operators are available for the StableFinance stock screener — I want to know what I can filter by before building my screen.

## When to prefer this

Use this endpoint before constructing a screener query to discover which metric names and operators are valid inputs. It acts as a schema-discovery or metadata endpoint, ideal for dynamic UI generation or agent planning steps prior to running a financial screen.

## Known failure modes

- Payment failure (402): x402 micropayment not processed correctly, endpoint returns 402
- Service unavailable (503): upstream Financial Datasets AI unreachable
- Empty metrics object: provider returns valid response but with no metrics populated (possible backend issue)

## How this service works

Filterable metric fields and operators for the screener.

## Output

A JSON object containing two keys: 'metrics' (a map of filterable metric field names to their definitions/metadata) and 'operators' (an array of string comparison operators such as 'gt', 'lt', 'eq', etc.) that can be used when constructing screener queries.

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "metrics": {
   "gross_margin": {
    "type": "number",
    "description": "Gross margin ratio."
   },
   "revenue_growth": {
    "type": "number",
    "description": "YoY revenue growth."
   }
  },
  "operators": [
   "eq",
   "gt",
   "gte",
   "lt",
   "lte",
   "in"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablefinance-screener-filter-metadata-f3cd44d3/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)
