# Verbs

For a non-exhaustive list of pre-made verbs for creating statements, see the [Verbs](https://github.com/xapijs/xapi/blob/main/src/constants/Verbs.ts) class. Verbs are a static property of the `XAPI` Object.

```typescript
import XAPI, { Statement } from "@xapi/xapi";

const statement: Statement = {
  actor: actor,
  verb: XAPI.Verbs.INITIALIZED,
  object: object
};
```
