<Intro>

<EndpointHeader />

<Description>

Return the full Markdown content of a single Bird documentation page, identified by its slug.

</Description>

</Intro>

<Parameters in="query">

<Parameter name="slug" type="string">

<Description>

Slug of the page to read, as returned in the slug field of a docs_search result (e.g. guides/email/contacts). Use index for the documentation landing page.

</Description>

</Parameter>

<Parameter name="locale" type="string">

<Description>

Documentation locale to read, as a language-region code such as en-us. Defaults to en-us when omitted or unavailable.

</Description>

</Parameter>

</Parameters>

<Payload kind="response">

<Field name="slug" type="string" required>

<Description>

Slug of the page, echoing the requested slug.

</Description>

</Field>

<Field name="locale" type="string" required>

<Description>

Documentation locale the page was drawn from.

</Description>

</Field>

<Field name="url" type="string" required>

<Description>

Absolute URL of the page, suitable to cite as the source of an answer.

</Description>

</Field>

<Field name="markdown" type="string" required>

<Description>

The page's full content as Markdown.

</Description>

</Field>

</Payload>