Documentation Index
Fetch the complete documentation index at: https://docs.stardust.gg/llms.txt
Use this file to discover all available pages before exploring further.
Creating an Application
An application is a container for all your profiles on Stardust, and is a prerequisite to starting. It’s extremely easy to create one within the dashboard, generate an API key, and dive into the code!
Get Application
Retrieves the app that lives under the supplied api key.
import { StardustCustodialSDK, StardustApp } from '@stardust-gg/stardust-custodial-sdk';
const STARDUST_API_KEY = 'your-api-key';
const sdk = new StardustCustodialSDK(STARDUST_API_KEY);
const app: StardustApp = await sdk.getApplication();