Build your next AI project with our
AI Backend, easy to use and customize.
1$curl = curl_init();
2 curl_setopt_array($curl, [
3 CURLOPT_URL => 'https://norlax.app/api/rest/message',
4 CURLOPT_RETURNTRANSFER => true,
5 CURLOPT_POST => true,
6 CURLOPT_POSTFIELDS => json_encode([
7 "launchpadSlugId" => "launchpad-123456789",
8 "message" => "Look up current news at cnn.com and send me a summarized version to my email as an audio podcast.",
9 "cacheTtlSeconds" => "forever"
10 ]),
11 CURLOPT_HTTPHEADER => ['Content-Type: application/json'],
12 ]);
13 $response = curl_exec($curl);
14 $data = json_decode($response, true);
15 $message = $data['message']['content']; // "Done, sent you the podcast to your email, enjoy."
Look at some stories of projects that have been build with Norlax AI.