Skip to main content
GET
/
workspace
/
{workspace-id}
/
project
/
{project-id}
/
page
/
{page-id}
Retrieve the content of a published page as markdown (scope: document.read)
curl --request GET \
  --url https://api.standards.site/beta/workspace/{workspace-id}/project/{project-id}/page/{page-id} \
  --header 'Authorization: Bearer <token>'
{
  "workspace": "z3plqkvf52r",
  "project": "3e95a13e7f1",
  "page": "logo",
  "content": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

workspace-id
string
required

The identifier for the workspace

project-id
string
required

The identifier for the project in the workspace

page-id
string
required

The url of the page within the project

Response

Page content retrieved successfully

workspace
string
required

The workspace id (matches the workspace-id sent with the request)

Example:

"z3plqkvf52r"

project
string
required

The project id (matches the project-id sent with the request)

Example:

"3e95a13e7f1"

page
string
required

The page id (matches the page-id sent with the request)

Example:

"logo"

content
string
required

The contents of the page as markdown