Fact Check Tools API
  1. claims
Fact Check Tools API
  • claims
    • /v1alpha1/claims:search
      GET
  • pages
    • /v1alpha1/pages
      GET
    • /v1alpha1/pages
      POST
    • /v1alpha1/{name}
      DELETE
    • /v1alpha1/{name}
      GET
    • /v1alpha1/{name}
      PUT
  1. claims

/v1alpha1/claims:search

GET
/v1alpha1/claims:search
claims
Search through fact-checked claims.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://factchecktools.googleapis.com//v1alpha1/claims:search'
Response Response Example
{
    "claims": [
        {
            "claimDate": "string",
            "claimReview": [
                {
                    "languageCode": "string",
                    "publisher": {
                        "name": "string",
                        "site": "string"
                    },
                    "reviewDate": "string",
                    "textualRating": "string",
                    "title": "string",
                    "url": "string"
                }
            ],
            "claimant": "string",
            "text": "string"
        }
    ],
    "nextPageToken": "string"
}

Request

Query Params
languageCode
string 
optional
The BCP-47 language code, such as "en-US" or "sr-Latn". Can be used to restrict results by language, though we do not currently consider the region.
maxAgeDays
integer 
optional
The maximum age of the returned search results, in days. Age is determined by either claim date or review date, whichever is newer.
offset
integer 
optional
An integer that specifies the current offset (that is, starting result location) in search results. This field is only considered if page_token is unset. For example, 0 means to return results starting from the first matching result, and 10 means to return from the 11th result.
pageSize
integer 
optional
The pagination size. We will return up to that many results. Defaults to 10 if not set.
pageToken
string 
optional
The pagination token. You may provide the next_page_token returned from a previous List request, if any, in order to get the next page. All other fields must have the same values as in the previous request.
query
string 
optional
Textual query string. Required unless review_publisher_site_filter is specified.
reviewPublisherSiteFilter
string 
optional
The review publisher site to filter results by, e.g. nytimes.com.

Responses

🟢200Successful response
application/json
Body
Response from searching fact-checked claims.
claims
array[object (GoogleFactcheckingFactchecktoolsV1alpha1Claim) {4}] 
optional
The list of claims and all of their associated information.
claimDate
string <google-datetime>
optional
The date that the claim was made.
claimReview
array[object (GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview) {6}] 
optional
One or more reviews of this claim (namely, a fact-checking article).
claimant
string 
optional
A person or organization stating the claim. For instance, "John Doe".
text
string 
optional
The claim text. For instance, "Crime has doubled in the last 2 years."
nextPageToken
string 
optional
The next pagination token in the Search response. It should be used as the page_token for the following request. An empty value means no more results.
Next
/v1alpha1/pages
Built with