Returns the nodeinfo of the Forgejo application
GET
/nodeinfo
Authorizations
Section titled “ Authorizations ”Responses
Section titled “ Responses ”NodeInfo
Media type application/json
NodeInfo contains standardized way of exposing metadata about a server running one of the distributed social networks
object
metadata
object
openRegistrations
boolean
protocols
Array<string>
services
NodeInfoServices contains the third party sites this server can connect to via their application API
object
inbound
Array<string>
outbound
Array<string>
software
NodeInfoSoftware contains Metadata about server software in use
object
homepage
string
name
string
repository
string
version
string
usage
NodeInfoUsage contains usage statistics for this server
object
localComments
integer format: int64
localPosts
integer format: int64
users
NodeInfoUsageUsers contains statistics about the users of this server
object
activeHalfyear
integer format: int64
activeMonth
integer format: int64
total
integer format: int64
version
string
Example generated
{ "metadata": {}, "openRegistrations": true, "protocols": [ "example" ], "services": { "inbound": [ "example" ], "outbound": [ "example" ] }, "software": { "homepage": "example", "name": "example", "repository": "example", "version": "example" }, "usage": { "localComments": 1, "localPosts": 1, "users": { "activeHalfyear": 1, "activeMonth": 1, "total": 1 } }, "version": "example"}