List sales [+]
curl --request GET \
--url https://www.nmcrate.com/api/public/v1/studio/salesimport requests
url = "https://www.nmcrate.com/api/public/v1/studio/sales"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://www.nmcrate.com/api/public/v1/studio/sales', 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://www.nmcrate.com/api/public/v1/studio/sales",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://www.nmcrate.com/api/public/v1/studio/sales"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.nmcrate.com/api/public/v1/studio/sales")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.nmcrate.com/api/public/v1/studio/sales")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyStudio
List sales [+]
Paginated, filterable list of your studio’s orders, buyer, product, and amount breakdown per sale.
GET
/
api
/
public
/
v1
/
studio
/
sales
List sales [+]
curl --request GET \
--url https://www.nmcrate.com/api/public/v1/studio/salesimport requests
url = "https://www.nmcrate.com/api/public/v1/studio/sales"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://www.nmcrate.com/api/public/v1/studio/sales', 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://www.nmcrate.com/api/public/v1/studio/sales",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://www.nmcrate.com/api/public/v1/studio/sales"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.nmcrate.com/api/public/v1/studio/sales")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.nmcrate.com/api/public/v1/studio/sales")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyReturns your studio’s orders, one row per sale, with the same buyer/product/amount breakdown the dashboard’s Orders table shows.
Tier: Premium, requires a premium key and an active Branding+ subscription (checked on every request).
Request
curl "https://nmcrate.com/api/public/v1/studio/sales?limit=20&from=2026-06-01" \
-H "x-api-key: nmk_studio_..."
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed on this endpoint). |
limit | integer | 20 | Items per page, max 100. |
status | string | COMPLETED | Transaction status filter; pass ALL for everything. The default mirrors the dashboard’s revenue figures. |
from | date | , | Start date (inclusive), e.g. 2026-06-01. |
to | date | , | End date (inclusive). |
q | string | , | Free-text search over the order reference and your product names. |
Response
{
"items": [
{
"id": "ord_1a2b3c",
"customer": "Steve",
"product": "Dungeon Pack",
"amount": "$11.24",
"gross": "$14.99",
"fee": "$2.25",
"tax": "$1.50",
"net": "$11.24",
"taxCountry": "DE",
"taxRatePercent": 19,
"status": "completed",
"createdAt": "2026-07-01T14:03:22.000Z",
"date": "12 days ago"
}
],
"page": 1,
"limit": 20,
"total": 342,
"totalPages": 18
}
| Field | Description |
|---|---|
gross | What the buyer paid. |
fee | Platform cut. |
tax | VAT withheld on the sale. |
net / amount | What was credited to the studio wallet. |
Amounts on this endpoint are formatted USD strings (
"$14.99"). For numeric values suited to charts and math, use Sales summary or Analytics timeseries.Errors
| HTTP | Code | When |
|---|---|---|
| 403 | PREMIUM_KEY_REQUIRED | The key is basic-tier. |
| 403 | SUBSCRIPTION_INACTIVE | Premium key, but the Branding+ subscription is no longer active. |