Interface RestRequestGetFills

Request parameters required to get a list of matching IDEXFill items.

See

interface RestRequestGetFills {
    nonce: string;
    wallet: string;
    market?: string;
    start?: number;
    end?: number;
    limit?: number;
    fromId?: string;
}

Hierarchy (view full)

Properties

nonce: string

User data and trade endpoints requests must include a nonce.

  • MUST be a version 1 UUID
  • Nonces may be supplied with or without hyphens.

Remarks

Version 1 UUIDs encode a timestamp in addition to other unique information, and thus serve both to prevent replay attacks as well as to enforce request timing. As a result, nonces MUST be generated at the time of a request.

wallet: string

The wallet address to use for the request.

market?: string

Base-quote pair e.g. 'ETH-USD'

start?: number

If provided, indicates the earliest (oldest) timestamp of an object to include in the response.

  • This value is inclusive, meaning objects with timestamps that exactly match start are included in the response.
  • start MUST be earlier than end if provided.
end?: number

If provided, indicates the latest (newest) timestamp of an object to include the response.

  • This value is inclusive, meaning objects with timestamps that exactly match end are included in the response.
  • end MUST be a later timestamp than start.
limit?: number

Maximum number to return of the requested type.

fromId?: string

Identifier of the earliest (oldest) of the requested type.