curl --request POST \
--url https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"amount": 8,
"daily_value_pct": 10,
"nutrient_type": "TOTAL_FAT",
"unit": "G"
}
'import requests
url = "https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients"
payload = {
"amount": 8,
"daily_value_pct": 10,
"nutrient_type": "TOTAL_FAT",
"unit": "G"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: 8, daily_value_pct: 10, nutrient_type: 'TOTAL_FAT', unit: 'G'})
};
fetch('https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients', 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.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'amount' => 8,
'daily_value_pct' => 10,
'nutrient_type' => 'TOTAL_FAT',
'unit' => 'G'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients"
payload := strings.NewReader("{\n \"amount\": 8,\n \"daily_value_pct\": 10,\n \"nutrient_type\": \"TOTAL_FAT\",\n \"unit\": \"G\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": 8,\n \"daily_value_pct\": 10,\n \"nutrient_type\": \"TOTAL_FAT\",\n \"unit\": \"G\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": 8,\n \"daily_value_pct\": 10,\n \"nutrient_type\": \"TOTAL_FAT\",\n \"unit\": \"G\"\n}"
response = http.request(request)
puts response.read_body{
"amount": 8,
"daily_value_pct": 10,
"id": "keATfB8VP2gSjcnTbsMNQL",
"name": "Total Fat",
"nutrient_type": "TOTAL_FAT",
"unit": "G"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}Add a product nutrient row
Add a single nutrient row to the product’s nutrition panel. The header must exist first (422 otherwise). Each nutrient_type may appear at most once per label (409 on a duplicate). Requires the organization.contribute_organization permission on the membership.
curl --request POST \
--url https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"amount": 8,
"daily_value_pct": 10,
"nutrient_type": "TOTAL_FAT",
"unit": "G"
}
'import requests
url = "https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients"
payload = {
"amount": 8,
"daily_value_pct": 10,
"nutrient_type": "TOTAL_FAT",
"unit": "G"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: 8, daily_value_pct: 10, nutrient_type: 'TOTAL_FAT', unit: 'G'})
};
fetch('https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients', 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.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'amount' => 8,
'daily_value_pct' => 10,
'nutrient_type' => 'TOTAL_FAT',
'unit' => 'G'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients"
payload := strings.NewReader("{\n \"amount\": 8,\n \"daily_value_pct\": 10,\n \"nutrient_type\": \"TOTAL_FAT\",\n \"unit\": \"G\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": 8,\n \"daily_value_pct\": 10,\n \"nutrient_type\": \"TOTAL_FAT\",\n \"unit\": \"G\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/nutrition/nutrients")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": 8,\n \"daily_value_pct\": 10,\n \"nutrient_type\": \"TOTAL_FAT\",\n \"unit\": \"G\"\n}"
response = http.request(request)
puts response.read_body{
"amount": 8,
"daily_value_pct": 10,
"id": "keATfB8VP2gSjcnTbsMNQL",
"name": "Total Fat",
"nutrient_type": "TOTAL_FAT",
"unit": "G"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}{
"detail": "The requested resource was not found.",
"error_code": "not_found",
"retryable": false,
"status": 404,
"timestamp": "2026-03-31T12:00:00+00:00",
"title": "Not Found",
"type": "https://closient.com/docs/errors/not_found"
}Authorizations
Path Parameters
UUID of the organization that owns the product.
22^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$GTIN-8/12/13/14 of the target product. Normalized to GTIN-14 by zero-padding before lookup.
^\d{8,14}$Body
Request body for adding a single nutrient row.
Canonical nutrient identifier. Each type may appear at most once per label.
CALORIES, TOTAL_FAT, SATURATED_FAT, TRANS_FAT, CHOLESTEROL, SODIUM, TOTAL_CARBS, DIETARY_FIBER, TOTAL_SUGARS, ADDED_SUGARS, PROTEIN, VITAMIN_D, CALCIUM, IRON, POTASSIUM "TOTAL_FAT"
Quantity of the nutrient per serving, in the units specified by unit.
x >= 08
Unit of measurement for amount. KCAL for calories; mass in G / MG / MCG; IU for vitamin activity-equivalent doses.
G, MG, MCG, KCAL, KJ, IU, ML "G"
Percent of the regulatory daily value (DV) covered by one serving. Null when DV is not declared.
x >= 010
Response
Created
A single nutrient row on a nutrition-facts label, with its row id.
URL-safe 22-character shortuuid encoding of the row's UUID primary key. Stable across the row's lifetime; suitable for sharing in URLs, log lines, and external SDK clients. Accepted on input as either the shortuuid form or the canonical UUID form (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
22^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$Canonical nutrient identifier. Stable across regulatory label formats.
CALORIES, TOTAL_FAT, SATURATED_FAT, TRANS_FAT, CHOLESTEROL, SODIUM, TOTAL_CARBS, DIETARY_FIBER, TOTAL_SUGARS, ADDED_SUGARS, PROTEIN, VITAMIN_D, CALCIUM, IRON, POTASSIUM Localized display name for the nutrient (e.g. Total Fat). Derived from nutrient_type.
Quantity of the nutrient per serving, in the units specified by unit.
x >= 0Unit of measurement for amount.
G, MG, MCG, KCAL, KJ, IU, ML Percent of the regulatory daily value covered by one serving. Null when not declared.
x >= 0