> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get page approval status

> Check the approval status of one or more pages.

Returns the approval status for a specific page URL or a batch of page URLs (up to 100 per request).

## Path parameters

<ParamField path="siteId" type="string" required>
  UUID or site token (`sc_...`) of the site.
</ParamField>

## Query parameters

<ParamField query="page_url" type="string">
  Single page URL to check. Provide either this or `page_urls`.
</ParamField>

<ParamField query="page_urls" type="string">
  Comma-separated list of page URLs. Max 100 URLs per request.
</ParamField>

<ResponseExample>
  ```json Single page theme={null}
  {
    "success": true,
    "data": {
      "status": "approved",
      "approved_by": { "id": "...", "name": "Jane Smith" },
      "approved_at": "2026-03-01T09:00:00Z"
    }
  }
  ```

  ```json Batch theme={null}
  {
    "success": true,
    "data": {
      "https://example.com/home": {
        "status": "approved",
        "approved_at": "2026-03-01T09:00:00Z"
      },
      "https://example.com/about": {
        "status": "unapproved"
      }
    }
  }
  ```
</ResponseExample>
