import axios from 'axios';
axios.post('https://api.artificialstudio.ai/api/generate', {
    model: 'animate-image',
    input: {
        model : "kling-turbo",
        prompt : "A stark starting line divides two powerful cars, engines revving for the challenge ahead. They surge forward in the heat of competition, a blur of speed and chrome. The finish line looms as they vie for victory.",
        duration : "5",
        file : "https://v3.fal.media/files/panda/HnY2yf-BbzlrVQxR-qP6m_9912d0932988453aadf3912fc1901f52.jpg"
    },
    webhook: 'https://your-webhook-url.com/api/webhook',
}, {
    headers: {
        'Content-Type': 'application/json',
        'Authorization': 'YOUR_API_KEY'
    }
}).then(res => {
    console.log('Success:', res.data);
}).catch(error => {
    console.error('Error:', error);
});app.post("/api/webhook", (req: any, res: any) => {
    console.log(req.body) // id, output, status, model, payload, error...
    res.send("Webhook received");
});