Skip to main content
GET
/
api
/
v1
/
sui
/
packages
/
top
Get top Sui packages
curl --request GET \
  --url http://localhost:8080/api/v1/sui/packages/top \
  --header 'Authorization: Bearer <token>'
[
  {
    "objectId": "<string>",
    "version": "<string>",
    "digest": "<string>",
    "modules": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of top packages

objectId
string
version
string
digest
string
modules
string[]