{
  "x402Version": 2,
  "id": 5265,
  "slug": "5265",
  "resource": "https://x402stock.xyz/api/v1/screener/smart",
  "description": "Describe a screen in plain English via `?q=` (e.g. 'oversold large caps up today on high volume'). An LLM parses it into a filter, screens the entire US market, optionally confirms oversold/overbought with RSI, and returns a ranked shortlist with a one-line rationale per name. No need to know the filter schema or run the enrichment loop yourself. From x402stock",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "200000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "q": "oversold large caps up today on high volume"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "as_of": "2026-06-08T12:00:00.000Z",
            "disclaimer": "AI-assisted screen over delayed whole-market data, not investment advice.",
            "filter": {
              "limit": 10,
              "max_change_percent": null,
              "max_price": null,
              "min_change_percent": 0,
              "min_price": 20,
              "min_volume": 5000000,
              "order": "desc",
              "signal": "oversold",
              "sort": "change_percent"
            },
            "interpretation": "Large, liquid stocks trading up today that are technically oversold (RSI < 30).",
            "model": "gpt-4o-mini",
            "note": null,
            "query": "oversold large caps up today on high volume",
            "result_count": 2,
            "results": [
              {
                "change_percent": 3.1,
                "price": 71.2,
                "rationale": "Up 3.1% today on heavy volume while RSI at 28 flags it oversold.",
                "rsi": 28.4,
                "ticker": "PYPL",
                "volume": 14000000
              },
              {
                "change_percent": 1.8,
                "price": 22.6,
                "rationale": "Bouncing 1.8% with very high volume from a deeply oversold RSI of 27.",
                "rsi": 26.9,
                "ticker": "INTC",
                "volume": 38000000
              }
            ],
            "sections": {
              "filter": "ok",
              "market": "ok",
              "rationale": "ok"
            },
            "source": "x402stock",
            "summary": "Two liquid large caps rebounding today from oversold conditions."
          },
          "type": "json"
        }
      },
      "schema": {
        "$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": {
                  "q": {
                    "minLength": 1,
                    "type": "string"
                  }
                },
                "required": [
                  "q"
                ],
                "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"
                  },
                  "disclaimer": {
                    "type": "string"
                  },
                  "filter": {
                    "additionalProperties": false,
                    "properties": {
                      "limit": {
                        "type": "number"
                      },
                      "max_change_percent": {
                        "anyOf": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "max_price": {
                        "anyOf": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "min_change_percent": {
                        "anyOf": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "min_price": {
                        "anyOf": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "min_volume": {
                        "anyOf": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "order": {
                        "type": "string"
                      },
                      "signal": {
                        "type": "string"
                      },
                      "sort": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "min_price",
                      "max_price",
                      "min_change_percent",
                      "max_change_percent",
                      "min_volume",
                      "sort",
                      "order",
                      "limit",
                      "signal"
                    ],
                    "type": "object"
                  },
                  "interpretation": {
                    "type": "string"
                  },
                  "model": {
                    "type": "string"
                  },
                  "note": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "query": {
                    "type": "string"
                  },
                  "result_count": {
                    "type": "number"
                  },
                  "results": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "change_percent": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "price": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "rationale": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "rsi": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "ticker": {
                          "type": "string"
                        },
                        "volume": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        }
                      },
                      "required": [
                        "ticker",
                        "price",
                        "change_percent",
                        "volume",
                        "rsi",
                        "rationale"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "sections": {
                    "additionalProperties": {
                      "type": "string"
                    },
                    "propertyNames": {
                      "type": "string"
                    },
                    "type": "object"
                  },
                  "source": {
                    "const": "x402stock",
                    "type": "string"
                  },
                  "summary": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "required": [
                  "query",
                  "source",
                  "as_of",
                  "interpretation",
                  "note",
                  "filter",
                  "sections",
                  "result_count",
                  "results",
                  "summary",
                  "model",
                  "disclaimer"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402stock.xyz",
  "lastUpdated": "2026-09-14T19:19:38.693Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-14T19:19:38.283Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402stock.xyz",
    "manifest_name": "x402stock.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}