> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# LaunchpadData

> Launchpad data for a token, if applicable.

### TypeScript shape

```ts theme={null}
interface LaunchpadData {
  name: string | null;
  launchpadName: string | null;
  graduationPercent: number | null;
  poolAddress: string | null;
  completedAt: number | null;
  completed: boolean | null;
  completedSlot: number | null;
  migratedSlot: number | null;
  migratedAt: number | null;
  migrated: boolean | null;
  migratedPoolAddress: string | null;
  launchpadProtocol: string | null;
  launchpadIconUrl: string | null;
  isCashbackEnabled: boolean | null;
  category: string | null;
}
```

<ResponseField name="launchpadName" type="String">
  Launchpad name.
</ResponseField>

<ResponseField name="graduationPercent" type="Float">
  Graduation percent.
</ResponseField>

<ResponseField name="poolAddress" type="String">
  Pool address.
</ResponseField>

<ResponseField name="completedAt" type="Int">
  Completion timestamp.
</ResponseField>

<ResponseField name="completed" type="Boolean">
  Whether the launchpad phase is completed.
</ResponseField>

<ResponseField name="completedSlot" type="Int">
  Completion slot (Solana).
</ResponseField>

<ResponseField name="migratedSlot" type="Int">
  Migration slot (Solana).
</ResponseField>

<ResponseField name="migratedAt" type="Int">
  Migration timestamp.
</ResponseField>

<ResponseField name="migrated" type="Boolean">
  Whether the token has migrated.
</ResponseField>

<ResponseField name="migratedPoolAddress" type="String">
  Migrated pool address.
</ResponseField>

<ResponseField name="launchpadProtocol" type="String">
  Launchpad protocol identifier.
</ResponseField>

<ResponseField name="launchpadIconUrl" type="String">
  Launchpad icon URL.
</ResponseField>

<ResponseField name="isCashbackEnabled" type="Boolean">
  Whether cashback is enabled for this launchpad.
</ResponseField>

<ResponseField name="category" type="String">
  Token category assigned by the launchpad (e.g. platform, meme, utility) for launchpads that publish a category taxonomy.
</ResponseField>
