DAS Methods

Get Assets by Creator

Returns a list of assets based on a given creator address.

Body Params
stringrequired
Public key of the creator
boolean
Indicates whether to retrieve only verified assets or not.
object
Sorting criteria
option
option
number
Number of assets to return
number
The index of the "page" to retrieve.
string
Retrieve assets before the specified ID
string
Retrieve assets after the specified ID
Language
Javascript Request Example
const url = "https://aura-mainnet.metaplex.com";

fetch(url, {
    method: "POST",
    headers: "Content-Type": "application/json",
    body: {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "getAssetsByCreator",
      "params": {}
    }
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));
Previous
Get Assets by Authority