Fact Check Tools API
  1. pages
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. pages

/v1alpha1/pages

GET
/v1alpha1/pages
pages
List the ClaimReview markup pages for a specific URL or for an organization.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://factchecktools.googleapis.com//v1alpha1/pages'
Response Response Example
{
    "claimReviewMarkupPages": [
        {
            "claimReviewAuthor": {
                "imageUrl": "string",
                "name": "string"
            },
            "claimReviewMarkups": [
                {
                    "claimAppearances": [
                        "string"
                    ],
                    "claimAuthor": {
                        "imageUrl": "string",
                        "jobTitle": "string",
                        "name": "string",
                        "sameAs": "string"
                    },
                    "claimDate": "string",
                    "claimFirstAppearance": "string",
                    "claimLocation": "string",
                    "claimReviewed": "string",
                    "rating": {
                        "bestRating": 0,
                        "imageUrl": "string",
                        "ratingExplanation": "string",
                        "ratingValue": 0,
                        "textualRating": "string",
                        "worstRating": 0
                    },
                    "url": "string"
                }
            ],
            "name": "string",
            "pageUrl": "string",
            "publishDate": "string",
            "versionId": "string"
        }
    ],
    "nextPageToken": "string"
}

Request

Query Params
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, and if the request is not for a specific URL. For example, 0 means to return results starting from the first matching result, and 10 means to return from the 11th result.
organization
string 
optional
The organization for which we want to fetch markups for. For instance, "site.com". Cannot be specified along with an URL.
pageSize
integer 
optional
The pagination size. We will return up to that many results. Defaults to 10 if not set. Has no effect if a URL is requested.
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.
url
string 
optional
The URL from which to get ClaimReview markup. There will be at most one result. If markup is associated with a more canonical version of the URL provided, we will return that URL instead. Cannot be specified along with an organization.

Responses

🟢200Successful response
application/json
Body
Response from listing `ClaimReview` markup.
claimReviewMarkupPages
array[object (GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage) {6}] 
optional
The result list of pages of ClaimReview markup.
claimReviewAuthor
object (GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewAuthor) 
optional
Info about the author of this claim review. Similar to the above, semantically these are page-level fields, and each ClaimReview on this page will contain the same values.
claimReviewMarkups
array[object (GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup) {8}] 
optional
A list of individual claim reviews for this page. Each item in the list corresponds to one ClaimReview element.
name
string 
optional
The name of this ClaimReview markup page resource, in the form of pages/{page_id}. Except for update requests, this field is output-only and should not be set by the user.
pageUrl
string 
optional
The URL of the page associated with this ClaimReview markup. While every individual ClaimReview has its own URL field, semantically this is a page-level field, and each ClaimReview on this page will use this value unless individually overridden. Corresponds to ClaimReview.url
publishDate
string 
optional
The date when the fact check was published. Similar to the URL, semantically this is a page-level field, and each ClaimReview on this page will contain the same value. Corresponds to ClaimReview.datePublished
versionId
string 
optional
The version ID for this markup. Except for update requests, this field is output-only and should not be set by the user.
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.
Previous
/v1alpha1/claims:search
Next
/v1alpha1/pages
Built with