PAPI
API ReferenceKalshi Trading

Create Order

POST
/kalshi/orders
X-API-Key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://loading/kalshi/orders" \  -H "Content-Type: application/json" \  -d '{    "amount": "string",    "market_id": "string",    "order_type": "market",    "outcome_id": "string",    "side": "buy"  }'
{
  "amount": "string",
  "filled": "string",
  "id": "string",
  "market_id": "string",
  "order_type": "market",
  "outcome_id": "string",
  "price": "string",
  "remaining": "string",
  "side": "buy",
  "status": "pending",
  "timestamp": "2019-08-24T14:15:22Z"
}