Skip to content

Retrieve a wiki page for a group

GET
/api/v4/groups/{id}/wikis/{slug}

Retrieves a specified wiki page for a group.

id
required
One of:
string

The ID or URL-encoded path of the group or project

slug
required
string

The slug of a wiki page

version
string
nullable

The version hash of a wiki page

render_html
boolean
nullable

Render content to HTML

OK

Media type application/json
object
format
string
slug
string
title
string
wiki_page_meta_id
integer format: int64
content
string
encoding
string
front_matter
object
Example
{
"format": "markdown",
"slug": "deploy",
"title": "deploy",
"wiki_page_meta_id": 123,
"content": "Here is an instruction how to deploy this project.",
"encoding": "UTF-8",
"front_matter": {
"title": "deploy"
}
}

Bad Request

Not found