## Inception `client.meta.inception(MetaInceptionParamsbody, RequestOptionsoptions?): MetaInceptionResponse` **post** `/public/v1/meta/inception` Queue an inception event ### Parameters - `body: MetaInceptionParams` - `content: string` ### Returns - `MetaInceptionResponse` - `message: string` - `status: string` ### Example ```typescript import Hyperaide from 'hyperaide'; const client = new Hyperaide({ apiKey: process.env['HYPERAIDE_API_KEY'], // This is the default and can be omitted }); const response = await client.meta.inception({ content: 'content' }); console.log(response.message); ```