Latest sector, industry-group, or industry breadth snapshot derived from Stock Trends sign
Latest sector, industry-group, or industry breadth snapshot derived from Stock Trends signal distribution.
100000 (raw units)
price
35
calls / 30d
3
unique payers
2026-09-16
updated
Provider
api.stocktrends.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xAEeb8EaBdC05532a26123045f99D208EB1cC00ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"category": "breadth",
"description": "Latest sector, industry-group, or industry breadth snapshot derived from Stock Trends signal distribution.",
"family": "breadth",
"input": {
"method": "GET",
"queryParams": {
"group_level": "sector",
"limit": 5000
},
"type": "http"
},
"metadataUrl": "https://api.stocktrends.com/v1/ai/context",
"output": {
"example": {
"request_id": "req_demo"
},
"format": "application/json",
"type": "json"
},
"pricing_catalog": "https://api.stocktrends.com/v1/pricing/catalog",
"provenance_reference": {
"approximate_observation_count": "16M+",
"classification_framework": "Stock Trends trend classification methodology",
"full_metadata_endpoints": [
"/v1/ai/context",
"/v1/meta/indicators",
"/v1/meta/stim"
],
"historical_coverage_start_year": 1980,
"interpretation_limit": "Historical depth supports research and probabilistic interpretation but does not guarantee future performance.",
"semantic_continuity": "Stock Trends indicators use a consistent classification doctrine across decades of observations."
},
"role": "market_breadth_context",
"schemaUrl": "https://api.stocktrends.com/v1/ai/tools",
"title": "Sector Breadth Latest",
"tools_manifest": "https://api.stocktrends.com/v1/ai/tools"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": true,
"properties": {
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"family": {
"type": "string"
},
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"cs_only": {
"default": true,
"type": "boolean"
},
"exchange": {
"enum": [
"N",
"Q",
"A",
"B",
"T",
"I"
],
"type": "string"
},
"group_level": {
"default": "sector",
"enum": [
"sector",
"industry_group",
"industry"
],
"type": "string"
},
"include_unknown": {
"default": false,
"type": "boolean"
},
"limit": {
"default": 5000,
"maximum": 50000,
"minimum": 1,
"type": "integer"
},
"min_price": {
"minimum": 0,
"type": "number"
},
"min_volume": {
"minimum": 0,
"type": "integer"
},
"vol_scale": {
"default": 100,
"minimum": 1,
"type": "integer"
},
"weekdate": {
"format": "date",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"metadataUrl": {
"type": "string"
},
"output": {
"additionalProperties": true,
"description": "Latest breadth groups and current signal distribution metrics.",
"properties": {
"example": {},
"format": {
"type": "string"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"pricing_catalog": {
"type": "string"
},
"schemaUrl": {
"type": "string"
},
"title": {
"type": "string"
},
"tools_manifest": {
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.stocktrends.com/v1/breadth/sector/latest" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.stocktrends.com/v1/breadth/sector/latest");
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://api.stocktrends.com/v1/breadth/sector/latest")
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/7735.json, and this resource appears in /discovery/resources and /discovery/search.