Get Billing Summary
curl --request GET \
--url https://api.launchmystore.io/api/v1/billing \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.launchmystore.io/api/v1/billing"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.launchmystore.io/api/v1/billing', 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://api.launchmystore.io/api/v1/billing",
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://api.launchmystore.io/api/v1/billing"
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://api.launchmystore.io/api/v1/billing")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launchmystore.io/api/v1/billing")
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{
"status": 200,
"state": "success",
"message": null,
"data": {
"billing": {
"storeId": "7374cb9e-9f9c-4041-87de-379aea6ed21a",
"plan": {
"type": "Trial",
"duration": null,
"expiresAt": "2026-02-15T18:19:04.275Z",
"status": "expired"
},
"credits": { "nova": 0, "wallet": "0.00" },
"activeSubscription": null
}
},
"pagination": null
}
Billing
Get Billing Summary
Get the merchant’s plan, credit balance, and active subscription.
GET
/
api
/
v1
/
billing
Get Billing Summary
curl --request GET \
--url https://api.launchmystore.io/api/v1/billing \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.launchmystore.io/api/v1/billing"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.launchmystore.io/api/v1/billing', 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://api.launchmystore.io/api/v1/billing",
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://api.launchmystore.io/api/v1/billing"
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://api.launchmystore.io/api/v1/billing")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launchmystore.io/api/v1/billing")
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{
"status": 200,
"state": "success",
"message": null,
"data": {
"billing": {
"storeId": "7374cb9e-9f9c-4041-87de-379aea6ed21a",
"plan": {
"type": "Trial",
"duration": null,
"expiresAt": "2026-02-15T18:19:04.275Z",
"status": "expired"
},
"credits": { "nova": 0, "wallet": "0.00" },
"activeSubscription": null
}
},
"pagination": null
}
Returns the current plan tier, plan duration, plan expiry, status, Nova/wallet
credit balance, and the active subscription (if any). Used by app dashboards
to surface plan tier and remaining trial.
Required scope:
read_billing
Response
Show billing
Show billing
Merchant store ID.
{ type, duration, expiresAt, status } — plan name (e.g. Trial,
Basic, Pro), duration label (monthly/yearly), expiry timestamp
and status (active, expired, cancelled, trialing).{ nova, wallet } — Nova AI credits and wallet balance.Most recent active subscription row,
null if none.{
"status": 200,
"state": "success",
"message": null,
"data": {
"billing": {
"storeId": "7374cb9e-9f9c-4041-87de-379aea6ed21a",
"plan": {
"type": "Trial",
"duration": null,
"expiresAt": "2026-02-15T18:19:04.275Z",
"status": "expired"
},
"credits": { "nova": 0, "wallet": "0.00" },
"activeSubscription": null
}
},
"pagination": null
}
⌘I