GraphQL API

Authentication

You must set the HTTP Authorization header to Bearer <license key> to use the REST APIs. For example, if your EqualTo Sheets license key is:

  • 12345679-1234-1234-1234-123456789abc

Then you should set the Authorization header to:

  • Bearer 12345679-1234-1234-1234-123456789abc

See Authentication in production for more information.

List all workbooks

query {
	workbooks {
		id
		name
	}
}

Create a blank workbook

mutation {
	createWorkbook {
		workbook {
			id
			name
		}
	}
}

List the sheets in a specific workbook

View the contents of A1 in the first sheet of a workbook

Set cell A1 in the first sheet of a workbook to "300$"

Notes

The GraphiQL client also contains some auto-generated documentation on the API:

Last updated