curl --request GET \
--url https://api.mnemom.ai/v1/catalog/values/{id}import requests
url = "https://api.mnemom.ai/v1/catalog/values/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/catalog/values/{id}', 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.mnemom.ai/v1/catalog/values/{id}",
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://api.mnemom.ai/v1/catalog/values/{id}"
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://api.mnemom.ai/v1/catalog/values/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/catalog/values/{id}")
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{
"id": "<string>",
"axis": "<string>",
"polarity": "positive",
"parameters": [
"domain"
],
"plain_definition": "<string>",
"category": "cognitive",
"gateway_hookable": true,
"gateway_hook_disposition": "<string>",
"observer_signals": [
"<string>"
],
"care_frame_template": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Get a single catalog entry by id.
Returns one entry from the Mnemom value catalog v1 by its stable kebab-case id.
curl --request GET \
--url https://api.mnemom.ai/v1/catalog/values/{id}import requests
url = "https://api.mnemom.ai/v1/catalog/values/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/catalog/values/{id}', 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.mnemom.ai/v1/catalog/values/{id}",
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://api.mnemom.ai/v1/catalog/values/{id}"
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://api.mnemom.ai/v1/catalog/values/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/catalog/values/{id}")
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{
"id": "<string>",
"axis": "<string>",
"polarity": "positive",
"parameters": [
"domain"
],
"plain_definition": "<string>",
"category": "cognitive",
"gateway_hookable": true,
"gateway_hook_disposition": "<string>",
"observer_signals": [
"<string>"
],
"care_frame_template": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Path Parameters
Stable catalog entry id (e.g., policy_attentiveness).
^[a-z][a-z0-9_]*$Response
Single catalog entry.
Stable kebab-case identifier — the contract.
Where in the behavioral space the value sits (e.g., "speed↔caution").
Whether the value is a do-this (positive) or don’t-do-that (negative).
positive, negative Which manifest parameters this entry accepts.
domain, intensity, severity_on_violation, scope Care-framed prose definition (interpretive; translates per-locale).
cognitive, operational, relational, stewardship, identity, confidentiality Whether the dispatcher binds this entry to a gateway hook.
Pass-2 detail — the gateway hook predicate disposition when applicable. null until mnemom-contracts publishes Pass-2 for this entry.
Pass-2 detail — the observer signals this entry binds on. null until Pass-2 ships.
Pass-2 detail — the care-framed error template when this entry fires. null until Pass-2 ships.