On September 30, 2024 the Fact Check Tools API will require users to update their OAuth tokens to include the FCT scope 'https://www.googleapis.com/auth/factchecktools'. This update to comply with best practices means you will need to make a change in order to continue using RPCs which use OAuth tokens for authentication. For instructions on how to set or change the scope, you can check the documentation for the use of OAuth 2.0 to access Google APIs.
Note: RPCs which currently use API keys for authentication will not be affected.
If you have any questions, please contact us at fct-api@google.com.
Method: pages.list
Stay organized with collections
Save and categorize content based on your preferences.
List the ClaimReview
markup pages for a specific URL or for an organization.
HTTP request
GET https://factchecktools.googleapis.com/v1alpha1/pages
The URL uses gRPC Transcoding syntax.
Query parameters
Parameters |
url |
string
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.
|
organization |
string
The organization for which we want to fetch markups for. For instance, "site.com". Cannot be specified along with an URL.
|
pageSize |
integer
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
The pagination token. You may provide the nextPageToken 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.
|
offset |
integer
An integer that specifies the current offset (that is, starting result location) in search results. This field is only considered if pageToken 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.
|
Request body
The request body must be empty.
Response body
Response from listing ClaimReview
markup.
If successful, the response body contains data with the following structure:
JSON representation |
{
"claimReviewMarkupPages": [
{
object (ClaimReviewMarkupPage )
}
],
"nextPageToken": string
} |
Fields |
claimReviewMarkupPages[] |
object (ClaimReviewMarkupPage )
The result list of pages of ClaimReview markup.
|
nextPageToken |
string
The next pagination token in the Search response. It should be used as the pageToken for the following request. An empty value means no more results.
|
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/userinfo.email
https://www.googleapis.com/auth/factchecktools
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-08-08 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-08 UTC."],[[["List `ClaimReview` markup pages associated with a specific URL or organization using the `pages` endpoint."],["Filter results by URL, organization, or use pagination with `pageSize`, `pageToken`, and `offset`."],["The response includes a list of `ClaimReviewMarkupPage` objects and a token for retrieving subsequent pages."],["Authorization requires either `userinfo.email` or `factchecktools` scope."]]],[]]