Page Summary
-
You can search through fact-checked claims using a GET HTTP request.
-
The search request uses various query parameters to filter results, including text query, language code, review publisher site, maximum age, pagination size, page token, and offset.
-
The request body must be empty.
-
The response body contains a list of fact-checked claims and a token for pagination.
Search through fact-checked claims.
HTTP request
GET https://factchecktools.googleapis.com/v1alpha1/claims:search
The URL uses gRPC Transcoding syntax.
Query parameters
| Parameters | |
|---|---|
query
|
Textual query string. Required unless |
languageCode
|
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. |
reviewPublisherSiteFilter
|
The review publisher site to filter results by, e.g. nytimes.com. |
maxAgeDays
|
The maximum age of the returned search results, in days. Age is determined by either claim date or review date, whichever is newer. |
pageSize
|
The pagination size. We will return up to that many results. Defaults to 10 if not set. |
pageToken
|
The pagination token. You may provide the |
offset
|
An integer that specifies the current offset (that is, starting result location) in search results. This field is only considered if |
Request body
The request body must be empty.
Response body
Response from searching fact-checked claims.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"claims"
:
[
{
object (
|
| Fields | |
|---|---|
claims[]
|
The list of claims and all of their associated information. |
nextPageToken
|
The next pagination token in the Search response. It should be used as the |

