Samples

This section presents a codelab you can use to become familiar with the Google Sheets API. Also provided are a set of "recipe" examples that demonstrate how to translate an intended Google Sheets action into an API request.

Often there's more than one way to complete a given task with the API. When you're deciding on how to approach a task, keep the following in mind:

  • If you need to read or write cell values, the spreadsheets.values collection is a better choice than the spreadsheets collection. The former's interface is easier to use for simple read/write operations.
  • Wherever possible, use the batch methods (spreadsheet.batchUpdate, spreadsheet.values.batchGet, and spreadsheet.values.batchUpdate) to bundle multiple requests into a single method call. Using these batch methods improves efficiency as they:

    • Reduce client HTTP overhead.
    • Reduce the number of queries made.
    • Reduce the number of revisions on the doc.
    • Ensure atomicity of all the changes in the batch.

Recipes

The examples listed in this section demonstrate how to express common actions in Sheets as Sheets API v4 requests.

These examples are presented in the form of HTTP requests to be language neutral. To learn how to implement Sheets API request protocols in a specific language using Google API client libraries, see the Read & write cell values and Update spreadsheets guides.

Recipes in this section are divided into the following categories:

  • Basic reading—Recipes that show how to read values from a sheet.
  • Basic writing—Recipes that show how to write values to a sheet.
  • Basic formatting—Recipes that show how to change the appearance of sheets and cells.
  • Charts—Recipes that show how to create and alter charts in a sheet.
  • Conditional formatting—Recipes that show how to alter cell appearance based on conditions.
  • Data operations—Recipes that show how to create, move, and manipulate data in a spreadsheet.
  • Named & protected ranges—Recipes that show how to create, update, and remove named and protected ranges in a spreadsheet.
  • Pivot tables—Recipes that show how to create pivot tables in a sheet.
  • Row & column operations—Recipes that show how to add, remove, and move rows and columns, and update their properties.
  • Sheet operations—Recipes that show how to create, clear, copy, and delete sheets, and also control their properties.