Stock screener: filter by fundamental criteria
Stock screener: filter by fundamental criteria. Screener tickers are not guaranteed on every downstream endpoint — before paid calls, check the target endpoint's /tickers list (e.g. /api/prices/snapshot/tickers, /api/financial-metrics/snapshot/tickers). Upstream invalid/unsupported tickers return 400/404 and are still charged.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-11
updated
Provider
stablefinance.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xBD17480bf6ff056f7b91d9AdC9DfDa001eb7283D",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "D6GAZpvvLe8aUi9qZEDTXPERHpP3pwAgaeucp9ib1fW",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"filters": [
{
"field": "gross_margin",
"operator": "gt",
"value": 0.4
},
{
"field": "revenue_growth",
"operator": "gt",
"value": 0.1
}
],
"limit": 10
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"results": [
{
"gross_margin": 0.7295,
"report_period": "2024-01-28",
"revenue_growth": 1.2585,
"ticker": "NVDA"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"filters": {
"items": {
"additionalProperties": false,
"properties": {
"field": {
"minLength": 1,
"type": "string"
},
"operator": {
"enum": [
"eq",
"gt",
"gte",
"lt",
"lte",
"in"
],
"type": "string"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
]
},
"type": "array"
}
]
}
},
"required": [
"field",
"operator",
"value"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"required": [
"filters"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"results": {
"items": {},
"type": "array"
}
},
"required": [
"results"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://stablefinance.dev/api/financials/search/screener" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://stablefinance.dev/api/financials/search/screener");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://stablefinance.dev/api/financials/search/screener")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2482.json, and this resource appears in /discovery/resources and /discovery/search.