The public registry of immutable operating-point labels
curl --request GET \
--url https://api.nextmoca.com/v1/operating-points \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nextmoca.com/v1/operating-points"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nextmoca.com/v1/operating-points', 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.nextmoca.com/v1/operating-points",
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.nextmoca.com/v1/operating-points"
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.nextmoca.com/v1/operating-points")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nextmoca.com/v1/operating-points")
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{
"default": "np-2026-08-r4",
"operating_points": [
{
"label": "np-2026-07-r1",
"policy_version": "np-2026-07-r1"
},
{
"label": "np-2026-07-r2",
"policy_version": "np-2026-07-r2"
},
{
"label": "np-2026-08-r3",
"policy_version": "np-2026-08-r3"
},
{
"label": "np-2026-08-r4",
"policy_version": "np-2026-08-r4"
}
]
}{
"message": "Unauthorized"
}{
"Message": "User is not authorized to access this resource with an explicit deny"
}Registry
The public registry of immutable operating-point labels
Every label this deployment can resolve, and the frozen policy_version
behind each. Only the label and its version cross the wire; the
configuration behind a label (excerpt tiers, gate mode, floors) is not
disclosed, so published results are verifiable and re-runnable
but not inspectable.
A label pins a configuration, not an engine build. See Operating points.
GET
/
v1
/
operating-points
The public registry of immutable operating-point labels
curl --request GET \
--url https://api.nextmoca.com/v1/operating-points \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nextmoca.com/v1/operating-points"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nextmoca.com/v1/operating-points', 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.nextmoca.com/v1/operating-points",
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.nextmoca.com/v1/operating-points"
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.nextmoca.com/v1/operating-points")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nextmoca.com/v1/operating-points")
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{
"default": "np-2026-08-r4",
"operating_points": [
{
"label": "np-2026-07-r1",
"policy_version": "np-2026-07-r1"
},
{
"label": "np-2026-07-r2",
"policy_version": "np-2026-07-r2"
},
{
"label": "np-2026-08-r3",
"policy_version": "np-2026-08-r3"
},
{
"label": "np-2026-08-r4",
"policy_version": "np-2026-08-r4"
}
]
}{
"message": "Unauthorized"
}{
"Message": "User is not authorized to access this resource with an explicit deny"
}Authorizations
Authorization: Bearer np_live_…
One credential form. There is no query-parameter, cookie or
x-api-key alternative. The legacy x-api-key header stopped being
accepted at the Bearer cutover and now fails authorization.
Keys are org-scoped, never user-scoped, and the secret is shown exactly once at mint. Rotation is create-then-revoke.