guzzle
Adding Query string params to a Guzzle GET request?
Another variation of the correct answer: $params = [ ‘query’ => [ ‘option_1’ => string, ‘option_2’ => string ] ]; And then call your request: $response = $guzzle_client->request(‘GET’,’/api.com’,$params);