v3 API//
- Returns the rolled-up counts for a single site-census folder
Get all censuses for an account
Create a new site census
Get a site census by ID
Update an existing site census
Delete a site census by ID
Returns a summary of the current census results data
Browse a host's folder tree, list every host's root, or search folders and pages across the census -- each returned folder carrying a preview of its direct URLs
Returns the URLs sitting directly in a site-census folder
Returns a preview of the current census results data given specific path patterns
Starts data-collection for a given census
Stops data-collection for a given census
Find site censuses
Returns the rolled-up cou...
GET /v3/site-censuses/{censusId}/folders/summary
Reads the precomputed rollup counts for one folder from site_census_url_folders (trustworthy only when finalized is true), plus live included/ignored URL counts computed over the folder's subtree.
Security
API_Key
GET
curl -i -X GET \
'https://api.observepoint.com/v3/site-censuses/{censusId}/folders/summary?baseDomain=string&host=string&folderPath=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Successful operation
Self-inclusive total URLs in this folder and all descendants (descendant_page_count).
Not-yet-categorized URLs in the subtree (unknown-status bucket); ~0 for a finalized census.
Response
{ "censusId": 0, "baseDomain": "string", "host": "string", "folderPath": "string", "totalUrls": 0, "directUrls": 0, "childFolderCount": 0, "visitedUrls": 0, "urlsToVisit": 0, "brokenUrls": 0, "includedUrls": 0, "ignoredUrls": 0, "finalized": true }