Skip to main content
GET
/
sites
List sites for a project
curl --request GET \
  --url https://public-api.replo.app/api/v1/public/sites \
  --header 'Authorization: Bearer <token>' \
  --header 'Replo-Api-Version: <replo-api-version>'
{
  "object": "list",
  "data": [
    {
      "object": "site",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "subdomain": "<string>",
      "is_default": true
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Replo-Api-Version
enum<string>
required

The public API version to use for this request.

Available options:
2026-06-27

Query Parameters

projectId
string<uuid>
required
cursor
string
Required string length: 1 - 200
limit
integer
Required range: x <= 100

Response

List sites for a project

object
enum<string>
required
Available options:
list
data
object[]
required
has_more
boolean
required
next_cursor
string | null
required