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/{name}

GET
/v1alpha1/{name}
pages
Get all ClaimReview markup on a page.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://factchecktools.googleapis.com//v1alpha1/'
Response Response Example
{
    "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"
}

Request

Path Params
name
string 
required
The name of the resource to get, in the form of pages/{page_id}.

Responses

🟢200Successful response
application/json
Body
Holds one or more instances of `ClaimReview` markup for a webpage.
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.
imageUrl
string 
optional
Corresponds to ClaimReview.author.image.
name
string 
optional
Name of the organization that is publishing the fact check. Corresponds to ClaimReview.author.name.
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.
claimAppearances
array[string]
optional
A list of links to works in which this claim appears, aside from the one specified in claim_first_appearance. Corresponds to ClaimReview.itemReviewed[@type=Claim].appearance.url.
claimAuthor
object (GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor) 
optional
Info about the author of this claim.
claimDate
string 
optional
The date when the claim was made or entered public discourse. Corresponds to ClaimReview.itemReviewed.datePublished.
claimFirstAppearance
string 
optional
A link to a work in which this claim first appears. Corresponds to ClaimReview.itemReviewed[@type=Claim].firstAppearance.url.
claimLocation
string 
optional
The location where this claim was made. Corresponds to ClaimReview.itemReviewed.name.
claimReviewed
string 
optional
A short summary of the claim being evaluated. Corresponds to ClaimReview.claimReviewed.
rating
object (GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating) 
optional
Info about the rating of this claim review.
url
string 
optional
This field is optional, and will default to the page URL. We provide this field to allow you the override the default value, but the only permitted override is the page URL plus an optional anchor link ("page jump"). Corresponds to ClaimReview.url
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.
Previous
/v1alpha1/{name}
Next
/v1alpha1/{name}
Built with