AI
Execute Action
POST
/executefetch("https://nebula-api.thirdweb.com/execute", { method: "POST", headers: { "x-secret-key": "<your-project-secret-key>", }, body: { message: "Hello", stream: false, session_id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", context: "{\n chainIds: string[] | null;\n walletAddress: string | null;\n}", },});x-secret-keystringRequiredYour thirdweb secret key for authentication.
Example:
YOUR_THIRDWEB_SECRET_KEYmessagestringRequiredThe message to be processed.
Example:
HellostreambooleanWhether to stream the response or not
Example:
falsesession_idstringThe session ID to associate with the message. If not provided, a new session will be created.
Example:
3fa85f64-5717-4562-b3fc-2c963f66afa6context{
chainIds: string[] | null;
walletAddress: string | null;
}Provide additional context information along with the message