> ## Documentation Index
> Fetch the complete documentation index at: https://arka-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Arka is an open-source AI terminal agent (PyPI package: arka-agent, GPL-2.0).
> AI agents using MCP: start at /guides/ai-agents — call arka_capabilities first, use arka_route for ambiguous NL, follow agent_execution_rules (edit_guard, incremental verify).
> Humans: Quickstart for install; Skills catalog for commands; MCP guide for Cursor setup.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# Kalshi prediction markets

> Kalshi prediction market odds fetch करें, open markets search करें, और terminal से trending contracts देखें — public data के लिए API key की आवश्यकता नहीं।

Arka में read-only Kalshi prediction market data के लिए एक **kalshi** skill शामिल है: open markets search करें, एक ticker का निरीक्षण करें, 24h volume से trending contracts देखें, और exchange status जाँचें।

कोई trading नहीं — केवल quotes और discovery।

## Quick examples

```bash theme={null}
arka kalshi search bitcoin
arka kalshi market KXBTC-25JUL-T100K
arka kalshi trending
arka kalshi status
```

प्राकृतिक भाषा भी काम करती है:

```bash theme={null}
arka "kalshi predictions on bitcoin"
arka "what are kalshi odds for inflation"
arka "kalshi trending"
```

## Commands

| Command                         | विवरण                                                     |
| ------------------------------- | --------------------------------------------------------- |
| `arka kalshi search <keywords>` | title/ticker keyword से open markets search करें          |
| `arka kalshi market <TICKER>`   | एक market के लिए पूर्ण quote (YES/NO, volume, close time) |
| `arka kalshi trending`          | 24h volume से top open markets                            |
| `arka kalshi status`            | Kalshi exchange/trading status                            |

## API approach

Skill Kalshi के public **Trade API v2** का उपयोग करता है (read-only market data के लिए API key की आवश्यकता नहीं):

* Base URL: `https://external-api.kalshi.com/trade-api/v2`
* Endpoints: `GET /markets`, `GET /markets/{ticker}`, `GET /exchange/status`

Kalshi के पास dedicated keyword search endpoint नहीं है, इसलिए `kalshi search` open markets fetch करता है और client-side पर keyword से filter करता है।

## वैकल्पिक configuration

`~/.config/arka/.env` में केवल तभी जोड़ें जब आपको custom base URL या future authenticated endpoints चाहिए:

```bash theme={null}
# Optional — public read endpoints work without a key
KALSHI_API_KEY=
KALSHI_API_BASE=https://external-api.kalshi.com/trade-api/v2
```

## संबंधित skills

| Skill              | उदाहरण                                                |
| ------------------ | ----------------------------------------------------- |
| `stock`            | `arka stock news`                                     |
| `currency_convert` | `arka convert 100 USD to INR`                         |
| `arka predictions` | `predictions --domain stocks --deep "banking sector"` |

यह भी देखें: [Stock intelligence](/hi/guides/stocks)


## Related topics

- [Stock intelligence](/hi/guides/stocks.md)
- [Skills catalog: 70+ built-in Arka commands](/hi/guides/skills.md)
- [Arka CLI command और flag reference](/hi/guides/cli.md)
- [Command aliases, subcommand synonyms, और skill नाम](/hi/reference/aliases.md)
- [Life sciences (Anthropic marketplace)](/hi/guides/life-sciences.md)
