> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fcontext.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Screeners And Indicators

> Use Financial Context market-data endpoints for screening and quote-derived indicators

Use screener endpoints to list strategies, inspect indicator metadata, and run filtered stock screens.

## Recommended Strategies

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/strategies?market=US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## Strategy Details

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/strategy?id=19" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## Search

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/search?market=US&conditions=pettm:10:50,roe:5:&show=roe,divyld&count=20" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

Screener endpoints support `GET`, so pass filters as query parameters.

## Available Indicators

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/screener/indicators" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```
