Get all push mirrors of the repository
GET
/repos/{owner}/{repo}/push_mirrors
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” owner
required
string
Owner of the repo
repo
required
string
Name of the repo
Query Parameters
Section titled “ Query Parameters ” page
integer
Page number of results to return (1-based)
limit
integer
Page size of results
Responses
Section titled “ Responses ”PushMirrorList
Media type application/json
Array<object>
PushMirror represents information of a push mirror
object
branch_filter
string
created
string format: date-time
interval
string
last_error
string
last_update
string format: date-time
public_key
string
remote_address
string
remote_name
string
repo_name
string
sync_on_commit
boolean
Example generated
[ { "branch_filter": "example", "created": "2026-04-15T12:00:00Z", "interval": "example", "last_error": "example", "last_update": "2026-04-15T12:00:00Z", "public_key": "example", "remote_address": "example", "remote_name": "example", "repo_name": "example", "sync_on_commit": true }]Headers
Section titled “ Headers ” X-Total-Count
integer format: int64
The total number of push mirrors
APIError is error format response
Media type application/json
APIError is an api error with a message
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}APIForbiddenError is a forbidden error response
Media type application/json
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}APINotFound is a not found error response
Media type application/json
object
errors
Array<string>
message
string
url
string
Example generated
{ "errors": [ "example" ], "message": "example", "url": "example"}