Method: locations.corroborateContent Stay organized with collections Save and categorize content based on your preferences.
Full name: projects.locations.corroborateContent
Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts.
Endpoint
posthttps://{service-endpoint}/v1/{parent}:corroborateContent Where{service-endpoint} is one of thesupported service endpoints.
Path parameters
parentstringRequired. The resource name of the Location from which to corroborate text. The users must have permission to make a call in the project. Format:projects/{project}/locations/{location}.
Request body
The request body contains data with the following structure:
facts[]object (Fact)Optional. Facts used to generate the text can also be used to corroborate the text.
parametersobject (Parameters)Optional. Parameters that can be set to override default settings per request.
contentobject (Content)Optional. Input content to corroborate, only text format is supported for now.
Response body
Response message for locations.corroborateContent.
If successful, the response body contains data with the following structure:
claims[]object (Claim)Claims that are extracted from the input content and facts that support the claims.
corroborationScorenumberconfidence score of corroborating content. value is [0,1] with 1 is the most confidence.
| JSON representation |
|---|
{"claims":[{object ( |
Parameters
Parameters that can be overrided per request.
citationThresholdnumberOptional. Only return claims with citation score larger than the threshold.
| JSON representation |
|---|
{"citationThreshold":number} |
Claim
Claim that is extracted from the input text and facts that support it.
factIndexes[]integerIndexes of the facts supporting this claim.
startIndexintegerIndex in the input text where the claim starts (inclusive).
endIndexintegerIndex in the input text where the claim ends (exclusive).
scorenumberconfidence score of this corroboration.
| JSON representation |
|---|
{"factIndexes":[integer],"startIndex":integer,"endIndex":integer,"score":number} |
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-06-27 UTC.