curl --request GET \
--url https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"reportedEvents": {
"timeFrame": "<string>",
"eventsDescription": "<string>",
"groupList": [
{
"groupId": "<string>",
"title": "<string>",
"description": "<string>"
}
],
"seriousVocab": [
"<string>"
],
"seriousDefaultAssessment": "<string>",
"otherVocab": [
"<string>"
],
"otherDefaultAssessment": "<string>",
"events": [
{
"eventType": "<string>",
"category": "<string>",
"subtitleDisplay": "<string>",
"subtitle": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"subtitleTotal": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"assessmentMethod": "<string>",
"description": "<string>",
"counts": [
{
"groupId": "<string>",
"events": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"subjectsAffected": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"subjectsAtRisk": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
}
}
]
}
]
}
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "<string>"
}{
"detail": "<string>"
}Get clinical trial detail
Retrieve one clinical trials record by its identifier. Requires the dataset’s Evidence scope.
curl --request GET \
--url https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scite.ai/api_partner/evidence/clinical-trials/{trial_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"reportedEvents": {
"timeFrame": "<string>",
"eventsDescription": "<string>",
"groupList": [
{
"groupId": "<string>",
"title": "<string>",
"description": "<string>"
}
],
"seriousVocab": [
"<string>"
],
"seriousDefaultAssessment": "<string>",
"otherVocab": [
"<string>"
],
"otherDefaultAssessment": "<string>",
"events": [
{
"eventType": "<string>",
"category": "<string>",
"subtitleDisplay": "<string>",
"subtitle": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"subtitleTotal": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"assessmentMethod": "<string>",
"description": "<string>",
"counts": [
{
"groupId": "<string>",
"events": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"subjectsAffected": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
},
"subjectsAtRisk": {
"id": "<string>",
"name": "<string>",
"highlighted": "<string>"
}
}
]
}
]
}
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "<string>"
}{
"detail": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Set to Bearer <token> to pass token for authorization.
Path Parameters
Response
Successful Response
Detail endpoint returns a flat trial object (same shape as ClinicalTrialResult).
reportedEvents is only populated on trials with hasResults=true.
Adverse events table as stored by ClinicalTrials.gov and indexed by Resolute.
Only present on trials that have results (hasResults=true). Contains the time frame of observation, group definitions, and a flat list of serious/other adverse events with per-group counts.
Resolute may return a single-element object instead of a list for groupList and events when there is only one item (XML-to-JSON coercion artifact). Both shapes are accepted.
Show child attributes
Show child attributes
