Example as php:
//On top of oyur code header('Content-Type: application/json'); //To output some array data into JSON $response = array("Key1" => "Value1", "Key2" => "Value2"); echo json_encode($response);