> For the complete documentation index, see [llms.txt](https://www.xapijs.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.xapijs.dev/xapi-wrapper-library/about-resource.md).

# 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.
