Skip to main content

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.

Subscriptions use the WebSocket endpoint wss://api.mobula.io/graphql/subscriptions with the graphql-transport-ws protocol.

Returns

onLaunchpadTokenEventBatch
[LaunchpadTokenEventOutput!]!
Array of launchpad events per push. See LaunchpadTokenEventOutput for per-event fields.

Arguments

input
OnLaunchpadTokenEventBatchInput!
required
See OnLaunchpadTokenEventBatchInput. Unlike onLaunchpadTokenEvent, there is no per-token address filter — batches are scoped to protocol / launchpad name / network.

Example

subscription OnLaunchpadTokenEventBatch {
  onLaunchpadTokenEventBatch(input: { protocols: [Pump, RaydiumLaunchpad], eventType: Migrated }) {
    address
    networkId
    protocol
    launchpadName
    eventType
    price
    holders
    token { id symbol name }
  }
}