Screen the entire US stock market in one call
Screen the entire US stock market in one call. Filter every listed ticker by price range, percent change, and minimum volume, then sort by percent move, price, or volume. Tune with ?min_price=, ?max_price=, ?min_change_percent=, ?max_change_percent=, ?min_volume=, ?sort=, ?order=, ?limit=. Built for agents scanning for setups without iterating ticker by ticker. From x402stock
Answeringour last check, 2026-09-24
1 of 1checks answered this week
297 msmedian answer time
$0.03listed price per call
$0.03price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402stock.xyz/api/v1/screener
| Category | Market data |
|---|---|
| Provider host | x402stock.xyz |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.03 | 297 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"limit": 50,
"min_change_percent": 5,
"min_volume": 1000000,
"order": "desc",
"sort": "change_percent"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"limit": {
"default": 50,
"exclusiveMinimum": 0,
"maximum": 500,
"type": "integer"
},
"max_change_percent": {
"type": "number"
},
"max_price": {
"minimum": 0,
"type": "number"
},
"min_change_percent": {
"type": "number"
},
"min_price": {
"minimum": 0,
"type": "number"
},
"min_volume": {
"minimum": 0,
"type": "number"
},
"order": {
"default": "desc",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"sort": {
"default": "change_percent",
"enum": [
"change_percent",
"price",
"volume"
],
"type": "string"
}
},
"required": [
"sort",
"order",
"limit"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of": {
"type": "string"
},
"count": {
"type": "number"
},
"matched": {
"type": "number"
},
"order": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"results": {
"items": {
"additionalProperties": false,
"properties": {
"change": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"change_percent": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"ticker": {
"type": "string"
},
"volume": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"vwap": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"ticker",
"price",
"change",
"change_percent",
"volume",
"vwap"
],
"type": "object"
},
"type": "array"
},
"sort": {
"enum": [
"change_percent",
"price",
"volume"
],
"type": "string"
},
"source": {
"const": "x402stock",
"type": "string"
},
"universe": {
"type": "number"
}
},
"required": [
"source",
"as_of",
"universe",
"matched",
"sort",
"order",
"count",
"results"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}