Skip to main content
GET
/
api
/
v1
/
sui
/
packages
/
{packageID}
Get Sui package
curl --request GET \
  --url http://localhost:8080/api/v1/sui/packages/{packageID} \
  --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.

Path Parameters

packageID
string
required

Response

Package details

objectId
string
version
string
digest
string
modules
string[]