> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# EventQueryTimestampInput

> Inclusive timestamp window in Unix seconds, used by getTokenEvents and getTokenEventsForMaker.

### TypeScript shape

```ts theme={null}
interface EventQueryTimestampInput {
  from: number;
  to: number;
}
```

<ResponseField name="from" type="Int!" required>Start of the window (inclusive). Unix seconds.</ResponseField>
<ResponseField name="to" type="Int!" required>End of the window (inclusive). Unix seconds.</ResponseField>
