Parameters
chainId
string
default:"sui"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"sui_multiGetObjects"
required
JSON-RPC method name.
Fetch metadata for multiple Sui objects by ID.Positional parameters for sui_multiGetObjects:params[0]: Array of Object IDs to retrieve.params[1]: Optional flags to customize object data returned.
Returns
Array of SuiObjectResponse items, each representing one object.
Detailed object data if available.
Unique identifier of the object.
Version number of the object.
Fully qualified type of the object.
Transaction digest that last mutated the object.
Amount of SUI that can be refunded if object is deleted.
Deserialized or raw content of the object.
Error encountered while fetching this object.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=sui \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "sui_multiGetObjects",
"params": [
[],
{}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}