tutor / clinicaltrials
ClinicalTrials Web Service Guzzle Client
Requires
- php: ^5.6 || ^7.0
- gimler/guzzle-description-loader: ^0.0.4
- guzzlehttp/guzzle: ^6.2
- guzzlehttp/guzzle-services: ^1.1
This package is not auto-updated.
Last update: 2025-03-22 11:07:33 UTC
README
Provides an implementation of the Guzzle library to query ClinicalTrials Web Service.
NCI Clinical Trials Search API For information on NCI's efforts to improve how patients and oncologists find information and learn about cancer clinical trials please visit: https://www.cancer.gov/syndication/api
Usage
To use the ClinicalTrials API Client simply instantiate the client.
<?php require dirname(__FILE__).'/../vendor/autoload.php'; use Tutor\ClinicalTrials\ClinicalTrialsClient; $client = ClinicalTrialsClient::factory(); // if you want to see what is happening, add debug => true to the factory call $client = ClinicalTrialsClient::factory(['debug' => true]);
Invoke Commands using the __call
method (auto-complete phpDocs are included)
<?php $client = ClinicalTrialsClient::factory(); $response = $client->query([ 'brief_title_fulltext' => 'diabetes', ]);
Or Use the getCommand
method (in this case you need to work with the $response['data'] array:
<?php $client = ClinicalTrialsClient::factory(); //Retrieve the Command from Guzzle $command = $client->getCommand('Query', [ 'brief_title_fulltext' => 'diabetes', ]); $command->prepare(); $response = $command->execute(); $data = $response['data'];
Examples
You can execute the examples in the examples directory.
You can look at the services.json for details on what methods are available and what parameters are available to call them.
<?php $client = ClinicalTrialsClient::factory(); $response = $client->query([ 'eligibility.structured.gender' => 'female', 'brief_summary_fulltext' => 'diabetes', ]);
TODO
- Add all query fields
- Add some more examples
- Add tests
- Add some Response models
Contributions welcome
Found a bug, open an issue, preferably with the debug output and what you did. Bugfix? Open a Pull Request and I'll look into it.
License
The use ClinicalTrials\ClinicalTrialsClient API client is available under an MIT License.