Request text rotation in google sheets API
09:22 11 Mar 2026

I want to replicate a sheet from gs to a markdown type. I'm using google sheets API to request it:

sheet = service.spreadsheets().get(
    spreadsheetId=sheet_id,
    includeGridData=True,
    fields="""sheets(properties(sheetId,title),merges,bandedRanges,data(rowData(values(userEnteredValue,effectiveValue,formattedValue,userEnteredFormat(backgroundColor,horizontalAlignment,verticalAlignment,textRotation,textFormat,borders),effectiveFormat(backgroundColor,textRotation,textFormat,borders)))))"""
).execute()

But when I get the text rotation info I only get:


"textRotation": {
"vertical": False
}
python google-sheets-api