Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of 1.24.7, which is no longer the latest release. See the latest release.

Get revisions of a wiki page

GET
/repos/{owner}/{repo}/wiki/revisions/{pageName}
curl --request GET \
--url https://gitea.com/api/v1/repos/example/example/wiki/revisions/example \
--header 'Authorization: Basic <credentials>'
owner
required
string

Owner of the repo

repo
required
string

Name of the repo

pageName
required
string

Name of the page

page
integer

Page number of results to return (1-based)

WikiCommitList

Media typeapplication/json

WikiCommitList commit/revision list

object
commits
Array<object>

WikiCommit page commit/revision

object
author
CommitUser contains information of a user in the context of a commit.
object
date
string
email
string format: email
name
string
commiter
CommitUser contains information of a user in the context of a commit.
object
date
string
email
string format: email
name
string
message
string
sha
string
count
integer format: int64
Examplegenerated
{
"commits": [
{
"author": {
"date": "example",
"email": "hello@example.com",
"name": "example"
},
"commiter": {
"date": "example",
"email": "hello@example.com",
"name": "example"
},
"message": "example",
"sha": "example"
}
],
"count": 1
}

APINotFound is a not found empty response

Media typeapplication/json