> 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-distracted-phone-usage-statistics.md).

# Get Distracted Phone Usage statistics

```
/**
* Represents details info about Phone scoring.
*
* @param period  Statistics period. See also [StatisticPeriod]
*/
fun *getPhoneDetailStatistics(period: StatisticPeriod): PhoneDetails

```

**Response:**<br>

```
class PhoneDetails(
       /**
        * Phone Usage while driving scoring.
        * Range 0...100
        */
       val rating: Int,

       /**
        * Phone Usage while driving in min.
        */
       val phoneUse: Int,

       /**
        * Phone Usage while driving with speed > 20km/h in min.
        */
       val phoneUseOver20km: Int,

       /**
        * Phone Usage while driving diagram min/date.
        */
       val usingPhoneWhileDrivingDiagram: Array<DiagramEntity>?,

       /**
        * Phone Usage while driving with speed > 20km/h diagram min/date.
        */
       val usingPhoneWhileDrivingOverSpeedLimitDiagram: Array<DiagramEntity>?
)
```
