Skip to main content
GET
/
api
/
public
/
v1
/
studio
/
sales
List sales [+]
curl --request GET \
  --url https://www.nmcrate.com/api/public/v1/studio/sales
import 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_body
Returns 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

ParameterTypeDefaultDescription
pageinteger1Page number (1-indexed on this endpoint).
limitinteger20Items per page, max 100.
statusstringCOMPLETEDTransaction status filter; pass ALL for everything. The default mirrors the dashboard’s revenue figures.
fromdate,Start date (inclusive), e.g. 2026-06-01.
todate,End date (inclusive).
qstring,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
}
FieldDescription
grossWhat the buyer paid.
feePlatform cut.
taxVAT withheld on the sale.
net / amountWhat 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

HTTPCodeWhen
403PREMIUM_KEY_REQUIREDThe key is basic-tier.
403SUBSCRIPTION_INACTIVEPremium key, but the Branding+ subscription is no longer active.