Properties of a KalshiApiTask.

interface IKalshiApiTask {
    apiKeyId?: null | string;
    privateKey?: null | string;
    signature?: null | string;
    timestamp?: null | string;
    url?: null | string;
}

Implemented by

Properties

apiKeyId?: null | string

A string containing the API Key ID

privateKey?: null | string

A string containing the private key for authentication

signature?: null | string

Optional signature string field

timestamp?: null | string

Optional timestamp in milliseconds (used with signature)

url?: null | string

A string containing the URL to direct this HTTP request to.