hi @pipariyah1
You get a 419 status code, if an (external) script tries to post to your Laravel application, without the o-so-needed CSRF token.
First option is to change in App\Http\Middleware\VerifyCsrfToken: protected $except = [ ‘/’, ]; (or maybe something more specific and a little more safe, like ‘/myapiurl/’,)
Second option is to put the route in api.php instead of web.php, but that implies prefixing all your routes with /api/
https://markohoven.com/2018/01/23/419-http-status-code/
Already see/ tried this?