# About Resource

## getAbout

Gets information about the LRS.

### **Example**

```typescript
xapi.getAbout().then((result: AxiosResponse<About>) => {
  const about: About = result.data;
  console.log(about); // {versions: ["1.0.3"]}
});
```

### **Parameters**

| Parameter      | Type    | Required | Description            |
| -------------- | ------- | -------- | ---------------------- |
| useCacheBuster | boolean | false    | Enables cache busting. |

### **Returns**

This method returns an `AxiosPromise` with the success `data` containing an [About](https://github.com/xapijs/xapi/tree/fd040c6f049f68fce317538626906de57ffebf44/src/interfaces/About/About.ts) object.
