curl --request GET \
--url https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/ \
--header 'X-API-Key: <api-key>'import requests
url = "https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://www.closient.com/signals/api/v1/adverse-reports/{reference_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://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.closient.com/signals/api/v1/adverse-reports/{reference_id}/")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"batch": "LOT-2026-04",
"body": "Two of us were unwell a few hours after eating this.",
"contact_consent": true,
"created": "2026-07-14T14:30:00Z",
"delivery": {
"delivered_at": "2026-07-14T14:30:00Z",
"sla_deadline": "2026-07-15T14:30:00Z",
"state": "delivered",
"within_sla": true
},
"gtin": "00012345678905",
"has_voice": false,
"id": "a1b2c3d4e5f6",
"reference_id": "AR-7F3K9Q2M",
"regulator_handoff": {
"agency": "fda_srp",
"agency_name": "U.S. Food and Drug Administration",
"guidance": "Report a food problem to the FDA.",
"prefill": {
"batch_lot": "LOT-2026-04",
"closient_reference": "AR-7F3K9Q2M",
"gtin": "00012345678905",
"product_name": "Acme Bagged Salad"
},
"program": "Safety Reporting Portal",
"url": "https://www.safetyreporting.hhs.gov"
},
"report_type": "illness",
"severity": "moderate",
"status": "active"
}{
"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"
}Get my adverse report
Retrieve one of the authenticated consumer’s own adverse reports by its reference_id. A reference that belongs to another consumer reads as 404 (no cross-consumer existence oracle).
curl --request GET \
--url https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/ \
--header 'X-API-Key: <api-key>'import requests
url = "https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://www.closient.com/signals/api/v1/adverse-reports/{reference_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://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.closient.com/signals/api/v1/adverse-reports/{reference_id}/")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.closient.com/signals/api/v1/adverse-reports/{reference_id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"batch": "LOT-2026-04",
"body": "Two of us were unwell a few hours after eating this.",
"contact_consent": true,
"created": "2026-07-14T14:30:00Z",
"delivery": {
"delivered_at": "2026-07-14T14:30:00Z",
"sla_deadline": "2026-07-15T14:30:00Z",
"state": "delivered",
"within_sla": true
},
"gtin": "00012345678905",
"has_voice": false,
"id": "a1b2c3d4e5f6",
"reference_id": "AR-7F3K9Q2M",
"regulator_handoff": {
"agency": "fda_srp",
"agency_name": "U.S. Food and Drug Administration",
"guidance": "Report a food problem to the FDA.",
"prefill": {
"batch_lot": "LOT-2026-04",
"closient_reference": "AR-7F3K9Q2M",
"gtin": "00012345678905",
"product_name": "Acme Bagged Salad"
},
"program": "Safety Reporting Portal",
"url": "https://www.safetyreporting.hhs.gov"
},
"report_type": "illness",
"severity": "moderate",
"status": "active"
}{
"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
The report's reference id (e.g. AR-7F3K9Q2M).
Response
OK
A filed adverse report as the reporter sees it — the receipt.
Carries the immutable reference id, the report's typed fields, the delivery record, and the prefilled regulator handoff (Closient never files on the consumer's behalf — the handoff is how they complete the real report).
Immutable, human-facing reference the reporter quotes to track it.
Public short-UUID identifier of the adverse report.
22^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$GTIN-14 of the product this report is about.
Typed harm category code.
illness, injury, allergic_reaction, foreign_object, spoilage, packaging_defect Freeform description the consumer wrote (may be empty for voice-only).
Underlying signal lifecycle code: active or revoked.
True when a voice capture session backs this report.
Whether the consumer opted in to be contacted by the brand.
ISO-8601 timestamp the report was filed.
The immutable delivery record for this report.
Show child attributes
Show child attributes
{
"delivered_at": "2026-07-14T14:30:00Z",
"sla_deadline": "2026-07-15T14:30:00Z",
"state": "delivered",
"within_sla": true
}
Prefilled handoff to the appropriate regulator — the consumer completes the filing.
Show child attributes
Show child attributes
{
"agency": "fda_srp",
"agency_name": "U.S. Food and Drug Administration",
"guidance": "Report a food, dietary-supplement or cosmetic problem to the FDA.",
"prefill": {
"batch_lot": "LOT-2026-04",
"closient_reference": "AR-7F3K9Q2M",
"gtin": "00012345678905",
"product_name": "Acme Bagged Salad"
},
"program": "Safety Reporting Portal",
"url": "https://www.safetyreporting.hhs.gov"
}
Batch/lot identifier (GS1 AI 10) from the scan, or null.
Serialized-unit context from the scan, or null.
Consumer-declared severity code, or null if not graded. Never inferred by Closient.
minor, moderate, serious, life_threatening