> ## Documentation Index
> Fetch the complete documentation index at: https://open.manus.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# website.status

> Retrieves a website's publish status, live URL, and visibility. Use [website.listCheckpoints](https://open.manus.ai/docs/v2/website.listCheckpoints) to browse version history, or [website.publish](https://open.manus.ai/docs/v2/website.publish) to deploy changes. See the [Website](https://open.manus.ai/docs/v2/website) guide.

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

<Tip>
  **Auth:** API Key only — not available with OAuth tokens.
</Tip>

<Tip>
  **Poll after publish:** Call this after [website.publish](https://open.manus.ai/docs/v2/website.publish) until `publish_status` settles to `published` or `failed`.

  **Live version:** Match the response's `version_id` against entries from [website.listCheckpoints](https://open.manus.ai/docs/v2/website.listCheckpoints) to see which checkpoint is serving traffic. See the [Website](https://open.manus.ai/docs/v2/website) guide.
</Tip>


## OpenAPI

````yaml GET /v2/website.status
openapi: 3.1.0
info:
  title: Manus OpenAPI v2
  description: >-
    API for integrating Manus into your workflow. All responses are wrapped with
    {"ok": true, "request_id": "...", ...} for success and {"ok": false,
    "request_id": "...", "error": {"code": "...", "message": "..."}} for errors.
  version: 2.0.0
servers:
  - url: https://api.manus.ai
security:
  - ApiKeyAuth: []
paths:
  /v2/website.status:
    get:
      summary: GetWebsiteStatus
      description: >-
        Retrieves a website's publish status, live URL, and visibility. Use
        [website.listCheckpoints](https://open.manus.ai/docs/v2/website.listCheckpoints)
        to browse version history, or
        [website.publish](https://open.manus.ai/docs/v2/website.publish) to
        deploy changes. See the [Website](https://open.manus.ai/docs/v2/website)
        guide.
      operationId: openapi.v2.OpenapiV2Service.GetWebsiteStatus
      parameters:
        - name: x-manus-api-key
          in: header
          required: true
          schema:
            type: string
          description: >-
            API key for authentication. This endpoint does not support OAuth2
            tokens. See
            [Authentication](https://open.manus.ai/docs/v2/authentication).
        - name: task_id
          in: query
          required: false
          schema:
            type: string
          description: >-
            Session UID. Mutually exclusive with `website_id` — exactly one must
            be provided. The session must contain exactly one website.
        - name: website_id
          in: query
          required: false
          schema:
            type: string
          description: >-
            Unique website ID. Mutually exclusive with `task_id` — exactly one
            must be provided. Obtain from the response of `website.status` or
            `website.publish`.
      responses:
        '200':
          description: Web status retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    example: true
                    description: Whether the request was successful.
                  request_id:
                    type: string
                    description: Unique identifier for this API request.
                  website_id:
                    type: string
                    description: Unique website ID.
                  publish_status:
                    type: string
                    enum:
                      - unpublished
                      - publishing
                      - published
                      - failed
                    description: >-
                      `unpublished` — never published or has been taken down;
                      call `website.publish` to bring it online. `publishing` —
                      deployment in progress; poll again. `published` — live and
                      `site_urls` is reachable. `failed` — last deployment
                      failed.
                  site_urls:
                    type: array
                    items:
                      type: string
                    description: >-
                      Public URLs where the live site can be reached, ordered
                      from default to most specific: the space URL
                      (`https://{space_id}.manus.space`, always present when
                      published), an optional sub-domain URL
                      (`https://{sub_domain}.manus.space`), and any active
                      custom domains bound by the owner. All entries include the
                      `https://` scheme. Returned as an empty array unless
                      `publish_status` is `published`.
                  version_id:
                    type: string
                    description: >-
                      **Optional.** Checkpoint `version_id` currently deployed.
                      Present only when the site has been published.
                  status_updated_at:
                    type: integer
                    format: int64
                    description: >-
                      **Optional.** Last time the publish status changed (Unix
                      seconds). Present only when the site has been published.
                  visibility:
                    type: string
                    enum:
                      - public
                      - team
                      - private
                    description: >-
                      Who can access the published site. `public` — anyone.
                      `team` — current team members only (team accounts).
                      `private` — owner and invited collaborators only.
        4XX:
          description: Error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security: []
components:
  schemas:
    ErrorResponse:
      type: object
      description: Standard error response format returned when a request fails.
      properties:
        ok:
          type: boolean
          example: false
          description: Always false for error responses.
        request_id:
          type: string
          description: >-
            Unique identifier for this API request, useful for debugging with
            support.
        error:
          type: object
          description: Error details.
          properties:
            code:
              type: string
              description: >-
                Machine-readable error code (e.g., "invalid_argument",
                "not_found", "permission_denied", "rate_limited").
            message:
              type: string
              description: Human-readable error description explaining what went wrong.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-manus-api-key

````