---
# System prepended metadata

title: Admin Analytics API

---

# Admin Analytics API

Base URL: `{{baseUrlAdmin}}`

---

## Authentication

All endpoints require an admin Bearer token passed in the `Authorization` header:
```
Authorization: Bearer {{admin_token}}
```

---

## 1. Total Number of Tokenized Songs

**`GET`** `/total-song-collected`

Retrieves the total count of tokenized (collected) songs across the platform.

### Headers

| Key | Value | Type |
|-----|-------|------|
| Authorization | `Bearer {{admin_token}}` | text |

### Example Request
```
GET {{baseUrlAdmin}}/total-song-collected
```

---

## 2. Total Collections in App

**`GET`** `/total-collections`

Retrieves the total number of collections created across the platform.

### Headers

| Key | Value | Type |
|-----|-------|------|
| Authorization | `Bearer {{admin_token}}` | text |

### Example Request
```
GET {{baseUrlAdmin}}/total-collections
```

---

## 3. Total Artists

**`GET`** `/total-artists`

Retrieves the total number of artists registered on the platform.

### Headers

| Key | Value | Type |
|-----|-------|------|
| Authorization | `Bearer {{admin_token}}` | text |

### Example Request
```
GET {{baseUrlAdmin}}/total-artists
```