> For the complete documentation index, see [llms.txt](https://docs-old.telematicssdk.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-old.telematicssdk.com/response-codes/archive/back-end-to-app-integration/get-the-data-to-the-android-app/user-statistics/get-dashboard-info.md).

# Get Dashboard info

```
/**
* Common info about a scoring by general parameter as Mileage, Maneuvers, Speeding and etc.
*/
fun *getDashboardInfo(): DashboardInfo
```

<br>

**Response:**<br>

```
class DashboardInfo(
       /**
        * The user rating points.
        * Range 0..100.
        */
       val rating: Int,

       /**
        * The user discount points in percentage.
        * Range 0...100
        */
       val discount: Int,

       /**
        * The common driving level.
        * Range 0...100
        */
       val drivingLevel: Int,

       /**
        * The common speed level.
        * Range 0...100
        */
       val speedLevel: Int,

       /**
        * The common mileage level.
        * Range 0...100
        */
       val mileageLevel: Int,

       /**
        * The phone usage level.
        * Range 0...100
        */
       val phoneLevel: Int,

       /**
        * The time of days level.
        * Range 0...100
        */
       val timeOfDayScore: Int
)
```
