Skip to main content
GET
/
api
/
public
/
v1
/
studio
/
products
List products
curl --request GET \
  --url https://www.nmcrate.com/api/public/v1/studio/products
import requests

url = "https://www.nmcrate.com/api/public/v1/studio/products"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://www.nmcrate.com/api/public/v1/studio/products', 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/products",
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/products"

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/products")
.asString();
require 'uri'
require 'net/http'

url = URI("https://www.nmcrate.com/api/public/v1/studio/products")

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
Lists every non-archived product in the studio, including unpublished drafts, this is your own data, so nothing is hidden. Each item carries the public product shape plus owner-only publish-state fields.
Tier: Free, any studio key.

Request

curl "https://nmcrate.com/api/public/v1/studio/products?status=published&limit=20" \
  -H "x-api-key: nmk_studio_..."

Query parameters

ParameterTypeDefaultDescription
pageinteger0Zero-indexed page number.
limitinteger20Items per page, max 100.
statusstringallall, published, or draft (anything not published).

Response

{
  "items": [
    {
      "id": "prod_8f3a2c",
      "slug": "dungeon-pack",
      "name": "Dungeon Pack",
      "shortDescription": "50 rooms of doom.",
      "category": "plugin",
      "tags": ["dungeon", "adventure"],
      "price": 14.99,
      "currency": "USD",
      "isPaid": true,
      "license": "Proprietary",
      "imageUrl": "https://cdn.example.com/dungeon.png",
      "imageUrls": [],
      "currentVersion": "2.1.0",
      "downloadCount": 5321,
      "rating": 4.8,
      "ratingCount": 96,
      "minecraftVersion": { "min": "1.19", "max": "1.21" },
      "modelCompatibility": [],
      "createdAt": "2025-11-02T10:20:00.000Z",
      "updatedAt": "2026-06-30T08:12:00.000Z",
      "url": "/products/dungeon-pack",
      "status": "published",
      "isPublic": true,
      "isArchived": false
    }
  ],
  "page": 0,
  "limit": 20,
  "total": 12,
  "hasMore": false
}
FieldDescription
items[]Products sorted by last update, newest first.
items[].statusPublish state (published, or the review/draft state), owner-only field.
items[].isPublic / items[].isArchivedVisibility flags, owner-only fields.
hasMoretrue when another page exists.