Skip to main content
GET
/
portfolio
/
subaccounts
/
transfers
Get Subaccount Transfers
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/portfolio/subaccounts/transfers \
  --header 'KALSHI-ACCESS-KEY: <api-key>' \
  --header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
  --header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'
{
  "transfers": [
    {
      "transfer_id": "<string>",
      "from_subaccount": 123,
      "to_subaccount": 123,
      "amount_cents": 123,
      "created_ts": 123
    }
  ],
  "cursor": "<string>"
}

Authorizations

KALSHI-ACCESS-KEY
string
header
required

Your API key ID

KALSHI-ACCESS-SIGNATURE
string
header
required

RSA-PSS signature of the request

KALSHI-ACCESS-TIMESTAMP
string
header
required

Request timestamp in milliseconds

Query Parameters

limit
integer<int64>
default:100

Number of results per page. Defaults to 100. Maximum value is 200.

Required range: 1 <= x <= 200
cursor
string

Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.

Response

Transfers retrieved successfully

transfers
object[]
required
cursor
string

Cursor for the next page of results.