suix_getCoins

Returns all Coin objects of the specified coin type owned by the given address. If the coin type is not provided, defaults to 0x2::sui::SUI.

⚠ This endpoint is only available with Blast access.

Path parameters

apiKeystringRequired

Request

This endpoint expects an object.
ownerstringRequired
The owner's Sui address.
coin_typestringOptional

Fully qualified type name of the coin (e.g., 0x2::sui::SUI). Defaults to 0x2::sui::SUI if omitted.

cursorstringOptional
Optional paging cursor to paginate results.
limitintegerOptional
Maximum number of items to return in a single page.

Response

A page of Coin objects and pagination metadata.
datalist of objects or null
List of Coin objects.
nextCursorstring or null
Cursor pointing to the next page of results, if any.
hasNextPageboolean or null
Whether there are more results available after this page.