Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/ENDPOINTS_OVERVIEW.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Kalshi API endpoints overview

This document summarizes some common API endpoints used by the examples in this repository. It complements the official API documentation.

| Endpoint | Purpose | Method |
|---------------------------------|--------------------------------------------|--------|
| `/markets` | List markets with optional filters | GET |
| `/markets/{ticker}` | Get details of a specific market | GET |
| `/orders` | Place a new order | POST |
| `/orders/{order_id}` | Retrieve or cancel an existing order | GET/DELETE |
| `/positions` | List current positions | GET |

See the official Kalshi API docs for query parameters and response schemas. Use these endpoints with the SDK or via direct HTTP if needed.

When adding new example scripts, please reference or update this overview.