v3 API//
- Returns the URLs sitting directly in a 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 rolled-up counts for a single 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 URLs sitting...
GET /v3/site-censuses/{censusId}/folders/urls
Lists the individual URLs whose containing folder is exactly folderPath (direct URLs only, not descendants), from site_census_urls, paginated.
Supply searchPattern to page through only the matching pages of one folder - the same pages the url-folders search nests in that folder's urls preview, using the identical page-name predicate and the same default (URL, id) order, so paging past a truncated preview continues the exact sequence the preview started and cannot surface pages the search itself would not have matched.
Security
API_Key
GET
curl -i -X GET \
'https://api.observepoint.com/v3/site-censuses/{censusId}/folders/urls?baseDomain=string&host=string&folderPath=string&searchPattern=string&page=0&pageSize=100&sortBy=URL&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
{ "metadata": { "pagination": { … } }, "urls": [ { … } ] }