It's easy to fetch those data with R.
TCGA-Assembler is a very good tool for you to get those data easily.
On the assumption that you are familiar with R.
First, download this tools, and unpackage it.
Second,
source("Model_A.R")
Third, execute the next sentence.
DownloadClinicalData(traverseResultFile = "./DirectoryTraverseResult_Jul-08-2014.rda", saveFolderName ="./UserManualExampleData/RawData.TCGA-Assembler", cancerType = "BLCA", clinicalDataType = c("patient", "drug", "follow_up", "radiation"))
saveFolderName ="./UserManualExampleData/RawData.TCGA-Assembler" #set the dir
cancerType = "BLCA" #choose the cancer type
clinicalDataType = c("patient", "drug", "follow_up", "radiation")) #choose the type of the clinical data you want to download
If you just want get the data for survival analysis, you can just choose follow_up, as choose the days_to_death and days_to_last_follow_up columns in the file as the death and censored data for survival analysis.
Or you just can get the clinical data for this weblink
good luck~