Skip to main content
GET
/
published
/
{projectId}
/
domains
List published domains
curl --request GET \
  --url https://app.myhero.so/published/{projectId}/domains \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "_id": "<string>",
    "published": [
      {
        "slug": "<string>",
        "domain": "<string>",
        "homepage": "<string>",
        "password": "<string>",
        "disabled": true
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Returns the project document with its published domain array for projectId. Each domain entry includes its slug, optional password hash, disabled flag, and homepage document ID.

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

projectId
string
required
Minimum string length: 1

Response

200 response

data
object
required