Laravel REST API调用返回状态为200的虚拟数据

I am working on making mobile application backend apis. The api I am working on now is just getting user information. I am testing the api with Postman app.

When I call the api on the postman, it returns JSON data successfully, but sometimes it returns dummy data for same api call. And when I try again, it returns correct JSON data.

I am attaching two screens. Here is the issue: enter image description here

Below shows correct response:

enter image description here

I am using Laravel5.1 and OAuth2 authentication module(lucadegasperi/oauth2-server-laravel) from Github. Server is hosted on Bluehost.

Here is laravel code:

    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index($id = null)
    {
        if($id == null) {
            $my_id = Authorizer::getResourceOwnerId();
            return User::find($my_id);
        }
        else
            return User::find($id);
    }

I am struggling with this issue for a week and please help me. Thanks in advance.

It looks like it has something to do with Incapsula. I don't know if this is something you setup, or if it is setup by your host, but the traffic to your website is going through Incapsula. Some of your POSTMAN requests are getting through fine, but some of them are being blocked by Incapsula, probably because they look like someone trying to scrape your site.

If you have control over this, you may want to whitelist your local IP while developing and testing.

Bluehost is not providing incapsula service, but the server DNS is allocated on Godaddy before moving and Godaddy setup incapsula. I have parking domain on Bluehost and replacing the domain address on my codes, the issues disappeared.