Skip to main content
POST
/
v1
/
page
/
{domain}
Get page content
curl --request POST \
  --url https://api.mintlify.com/discovery/v1/page/{domain} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "page": "<string>"
}
'
{
  "page": "<string>",
  "content": "<string>"
}

Authorizations

Authorization
string
header
required

The Authorization header expects a Bearer token. Use an assistant API key (prefixed with mint_dsc_). This is a public key safe for use in client-side code. Generate one on the API keys page in your dashboard.

Path Parameters

domain
string
required

The domain identifier from your domain.mintlify.app URL. Can be found at the end of your dashboard URL. For example, dashboard.mintlify.com/organization/domain has a domain identifier of domain.

Body

application/json
page
string
required

The page slug or path to retrieve content for (e.g. getting-started/quickstart).

Response

Page content retrieved successfully

page
string

The page slug that was requested.

content
string

The full stitched content of the page.