Skip to main content

Discover Your Edge

The best strategies start with careful asset selection. Uncover the perfect basket of securities for your strategy.

Integrate Seamlessly

Tickflow's fast and simple API allows you to easily blend dynamic asset selection into your strategy.

Stay Ahead of The Crowd

Markets are always changing — strategies that worked yesterday may not work today. Stay ahead by validating your strategy against new markets.

Tickflow has a fast, easy to use and well documented API. You can screen and query data with over 100+ technical and fundamental filters — Learn More.
POST  https://api.tickflow.io/v1/stocks/screener
{    "fields": [ "market_cap",                 "day_close",                 "revenue_growth",                "sector"],    "filters": [          {          "field": "market_cap",          "comparator": ">",          "threshold": 1.5e11          },          {          "field": "revenue_growth",          "comparator": ">",          "threshold": 0.2          },          {          "field": "sector",          "comparator": "=",          "threshold": "technology"          }      ]}
A request for stocks with $150B+ market cap that have at least 20% revenue growth and are in the technology sector — Get Started
Response
{    "status": 200,    "result": {      "ASML": {        "sector": "technology"        "revenue_growth": 0.351,        "day_close": 461.96,        "market_cap": 187774713856.0,      },      "AVGO": {        "sector": "technology",        "revenue_growth": 0.249,        "day_close": 468.68,        "market_cap": 189819142144.0      },      "TSM": {        "sector": "technology",        "revenue_growth": 0.435,        "day_close": 73.87,        "market_cap": 373946941440.0      }    }}