@dalton_moen 
To add a title to JSON format output in CodeIgniter, you can follow these steps:
1 2 3 4  | 
$data = array(
    'title' => 'My JSON Data',
    'data' => $jsonData // Your JSON data
);
 | 
1
 | 
$jsonOutput = json_encode($data);  | 
1 2 3  | 
$this->output
    ->set_content_type('application/json')
    ->set_output($jsonOutput);
 | 
With these steps, you can add a title to your JSON format output in CodeIgniter.