helius_get_assets_by_creator
Retrieve assets created by a specific address using a Solana blockchain query. Specify creator address, page, and limit to fetch results efficiently via the Helius API.
Instructions
Get assets created by a specific address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
creator | Yes | ||
limit | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"creator": {
"type": "string"
},
"limit": {
"type": "number"
},
"page": {
"type": "number"
}
},
"required": [
"creator"
],
"type": "object"
}