RalliesAPI

Introduction

OverviewReferenceSandbox
Retail Intent
AskQuestionsTopicsMoversSnapshot
Retail Positioning
HoldingsFlowsRotationOptions
AI Funds
TradesPositionsLeaderboardConsensus
Filings
SearchAskSummariesFinancialsMetrics
Miscellaneous
Screener
API reference/Miscellaneous/Screener
Contact us

Screener

POST/screener

Return ticker candidates for a natural-language stock screen.

Body Parameters

querystringrequired
Semantic search or natural-language screen query.
limitintegeroptional
Default: 10
Maximum number of rows to return.
Was this page helpful?
POST/screener
curl https://api.rallies.ai/v1/screener \
  -H "X-Rallies-API-Key: $RALLIES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Find profitable AI infrastructure stocks with strong revenue growth",
    "limit": 10
  }'

RESPONSE

JSON
{
  "tickers": [
    {
      "ticker": "NVDA",
      "explanation": "NVDA matches because it is a leading AI accelerator supplier with large data-center revenue exposure and strong recent growth."
    },
    {
      "ticker": "AMD",
      "explanation": "AMD matches because it is scaling AI accelerator revenue while remaining tied to broader data-center compute demand."
    },
    {
      "ticker": "ANET",
      "explanation": "ANET matches because high-speed cloud networking demand benefits from AI cluster buildouts."
    }
  ]
}