List all site context findings
A unique entity identifier
^[a-zA-Z0-9_-]+$The unique id of the site
Identifier of the page results to fetch.
The number of results per page
Filter findings by associated site topic ID.
Filter findings that reference the given site question ID as evidence.
Status of a site finding.
candidateis a finding that has been raised but not yet confirmed. Typically these are not shown to users.openis a finding that has been surfaced to users and is still under investigation.doneis a finding that has been resolved and is no longer under investigation.canceledis a finding that has been canceled and is no longer under investigation.
Estimated end-user severity of a site finding.
Filter findings that have at least one associated change request.
Only return findings last updated at or after this date.
Only return findings last updated before this date.
The field to sort site findings by. updatedAt returns the most recently updated findings first. severity returns the most severe findings first. sources returns the findings with the most linked sources (questions plus records) first. Defaults to 'updatedAt'.
updatedAtPossible values: OK
Total count of objects in the list
GET /v1/orgs/{organizationId}/sites/{siteId}/findings HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
OK
{
"next": {
"page": "text"
},
"count": 1,
"items": [
{
"object": "site-finding",
"id": "text",
"scan": "text",
"topic": null,
"title": "text",
"changeRequests": 1,
"pages": 1,
"records": 1,
"questions": 1,
"status": "candidate",
"type": "content-outdated",
"severity": "low",
"description": {
"object": "document",
"data": {},
"nodes": [
{
"object": "block",
"type": "paragraph",
"data": {},
"nodes": [
{
"object": "text",
"leaves": [
{
"object": "leaf",
"text": "Hello world",
"marks": []
}
]
}
]
}
]
},
"autoFixable": true,
"brokenLinkAction": {
"source": "text",
"captureWildcard": true,
"destination": {
"kind": "path",
"spaceId": "text",
"path": "text"
}
},
"outboundLink": {
"url": "https://example.com",
"status": "pending",
"failureKind": "client-error",
"httpStatus": 1,
"checkedAt": "2026-01-01T00:00:00.000Z"
},
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"urls": {
"location": "https://example.com"
}
}
]
}Last updated
Was this helpful?