Retrieve Dashboard Summary
curl --request GET \
--url https://{brand_domain}/api/mobile/v1/dashboard \
--header 'Authorization: Bearer <token>'import requests
url = "https://{brand_domain}/api/mobile/v1/dashboard"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{brand_domain}/api/mobile/v1/dashboard', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{brand_domain}/api/mobile/v1/dashboard",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{brand_domain}/api/mobile/v1/dashboard"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{brand_domain}/api/mobile/v1/dashboard")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{brand_domain}/api/mobile/v1/dashboard")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"today": {
"revenue": "4500.00",
"total": 12,
"pending": 2
},
"recent_transactions": [
{
"trx_id": "OP-481029304",
"amount": "500.00",
"currency": "BDT",
"status": "completed",
"gateway": "bkash-merchant",
"created_at": "2026-06-23T14:17:12Z"
}
],
"unread_notifications": 5,
"server_time": "2026-06-23T14:15:45Z"
}
}Retrieve Dashboard Summary
Retrieves today’s completed revenue volume, pending counts, active transaction logs (limit 5), and the count of unread push notifications.
GET
/
api
/
mobile
/
v1
/
dashboard
Retrieve Dashboard Summary
curl --request GET \
--url https://{brand_domain}/api/mobile/v1/dashboard \
--header 'Authorization: Bearer <token>'import requests
url = "https://{brand_domain}/api/mobile/v1/dashboard"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{brand_domain}/api/mobile/v1/dashboard', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{brand_domain}/api/mobile/v1/dashboard",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{brand_domain}/api/mobile/v1/dashboard"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{brand_domain}/api/mobile/v1/dashboard")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{brand_domain}/api/mobile/v1/dashboard")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"today": {
"revenue": "4500.00",
"total": 12,
"pending": 2
},
"recent_transactions": [
{
"trx_id": "OP-481029304",
"amount": "500.00",
"currency": "BDT",
"status": "completed",
"gateway": "bkash-merchant",
"created_at": "2026-06-23T14:17:12Z"
}
],
"unread_notifications": 5,
"server_time": "2026-06-23T14:15:45Z"
}
}Last modified on July 12, 2026
Related topics
Retrieve CustomerRetrieve RefundRetrieve TransactionRetrieve SMS Filter RulesRetrieve Device Connection StatusWas this page helpful?
⌘I