---
title: "Permbledhja e dites"
operation_id: "api.v1.dashboard.summary"
method: GET
path: "/api/v1/dashboard/summary"
group: "Paneli"
api_version: "v1"
authenticated: true
canonical: "https://fature.al/api-reference/endpoints/api-v1-dashboard-summary.html"
---

# Permbledhja e dites

Part of the [fature.al API](/api-reference/index.html) documentation.

## GET /api/v1/dashboard/summary

Nje pamje e shpejte e dites se sotme per ekranin kryesor: turni i hapur nese ka nje te tille,
shitjet e sotme dhe ato te dje per krahasim, gjendja e arkes dhe faturat e fundit. Pergjigja
ruhet ne cache per pak sekonda, prandaj nuk eshte burim per rakordim.

Full URL: `https://fature.al/api/v1/dashboard/summary`

API version: `v1`.

Authentication: required (bearer token).

### Example request

```bash
curl -X GET 'https://fature.al/api/v1/dashboard/summary' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'X-Client-Id: YOUR_CLIENT_ID' \
  -H 'X-Client-Secret: YOUR_CLIENT_SECRET' \
  -H 'Accept: application/json'
```

### Responses

**200** — OK

| Field | Type | Description |
| --- | --- | --- |
| `status` | boolean |  |
| `data` | any |  |

```json
{
    "status": true,
    "data": "data"
}
```

**429** — Kufiri i kerkesave u arrit: 30 kerkesa ne minute.

| Field | Type | Description |
| --- | --- | --- |
| `status` | boolean | Always false. A successful response carries `status: true` and a `data` object instead |
| `message` | string | The exception message. Empty when the failure carries no exception of its own |
| `errors` | array | Messages to show the operator or to log. Absent when the failure has nothing to add beyond `message` |

```json
{
    "status": true,
    "message": "Hello there",
    "errors": [
        "errors"
    ]
}
```
