ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

intellectia-stock-screener

Get stock screener list data from Intellectia API (no auth) and summarize results.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/intellectiaai/intellectia-stock-screener
Or

Intellectia Stock Screener

Base URL: https://api.intellectia.ai

Endpoint

  • GET /gateway/v1/stock/screener-list

Full URL:

  • https://api.intellectia.ai/gateway/v1/stock/screener-list

Query parameters

  • symbol_type (int): Asset type 0=stock 1=etf 2=crypto
  • period_type (int): Period 0=day 1=week 2=month
  • trend_type (int): Trend 0=bullish 1=bearish
  • profit_asc (bool): Sort by profit ascending (true = small → large)
  • market_cap (int): Market cap filter
    • 0=any
    • 1=micro <300M
    • 2=small 300M-2B
    • 3=mid 2B-10B
    • 4=large 10B-200B
    • 5=mega >200B
  • price (int): Price filter
    • 0=any
    • 1=<5
    • 2=<50
    • 3=>5
    • 4=>50
    • 5=5-50
  • page (int): Page number (example: 1)
  • size (int): Page size (example: 20)

Response (200)

Example response (shape):

{
  "ret": 0,
  "msg": "",
  "data": {
    "list": [
      {
        "code": "BKD.N",
        "symbol": "BKD",
        "symbol_type": 0,
        "name": "Brookdale Senior Living Inc",
        "logo": "https://intellectia-public-documents.s3.amazonaws.com/image/logo/BKD_logo.png",
        "pre_close": 14.5,
        "price": 15,
        "change_ratio": 3.45,
        "timestamp": "1769749200",
        "simiar_num": 10,
        "probability": 80,
        "profit": 5.27,
        "klines": [{ "close": 15, "timestamp": "1769749200" }],
        "trend_list": [
          {
            "symbol": "BKD",
            "symbol_type": 0,
            "is_main": true,
            "list": [{ "change_ratio": 5.27, "timestamp": "1730260800", "close": 16 }]
          }
        ],
        "update_time": "1769806800"
      }
    ],
    "total": 3,
    "detail": {
      "cover_url": "https://d159e3ysga2l0q.cloudfront.net/image/cover_image/stock-1.png",
      "name": "Stocks Bullish Tomorrow",
      "screener_type": 1011,
      "params": "{}",
      "desc": "..."
    }
  }
}

Field reference

Top-level:

  • ret (int): Status code (typically 0 means success)
  • msg (string): Message (empty string when OK)
  • data (object): Payload

data:

  • data.list (array): Result rows
  • data.total (int): Total number of rows
  • data.detail (object): Screener metadata

Metadata

Stars2287
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-intellectiaai-intellectia-stock-screener": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.