Skip to main content
GET
/
sites
/
{siteId}
/
approvals
/
status
Get page approval status
curl --request GET \
  --url https://api.surefeedback.com/api/v1/sites/{siteId}/approvals/status \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "status": "approved",
    "approved_by": { "id": "...", "name": "Jane Smith" },
    "approved_at": "2026-03-01T09:00:00Z"
  }
}
Returns the approval status for a specific page URL or a batch of page URLs (up to 100 per request).

Path parameters

siteId
string
required
UUID or site token (sc_...) of the site.

Query parameters

page_url
string
Single page URL to check. Provide either this or page_urls.
page_urls
string
Comma-separated list of page URLs. Max 100 URLs per request.
{
  "success": true,
  "data": {
    "status": "approved",
    "approved_by": { "id": "...", "name": "Jane Smith" },
    "approved_at": "2026-03-01T09:00:00Z"
  }
}