Zoho Sheet · Schema
Zoho Sheet API Response
Standard response envelope returned by the Zoho Sheet Data API v2
SpreadsheetsProductivityCollaborationDataOfficeZoho
Properties
| Name | Type | Description |
|---|---|---|
| status | string | Indicates whether the operation succeeded or failed |
| spreadsheet_name | string | Name of the spreadsheet involved in the operation |
| worksheet_name | string | Name of the worksheet involved (for worksheet-scoped operations) |
| header_row | integer | Header row index (1-indexed) used in the operation |
| records | array | Array of data records returned by read operations |
| total_row_count | integer | Total number of data rows in the worksheet (excluding header) |
| worksheet_list | array | List of worksheets in the workbook (returned by workbook operations) |
| error_code | integer | Numeric error code (present when status is failure) |
| error_message | string | Human-readable error description (present when status is failure) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/zoho-sheet/main/json-schema/api-response.json",
"title": "Zoho Sheet API Response",
"description": "Standard response envelope returned by the Zoho Sheet Data API v2",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": ["success", "failure"],
"description": "Indicates whether the operation succeeded or failed"
},
"spreadsheet_name": {
"type": "string",
"description": "Name of the spreadsheet involved in the operation"
},
"worksheet_name": {
"type": "string",
"description": "Name of the worksheet involved (for worksheet-scoped operations)"
},
"header_row": {
"type": "integer",
"minimum": 1,
"description": "Header row index (1-indexed) used in the operation"
},
"records": {
"type": "array",
"description": "Array of data records returned by read operations",
"items": {
"$ref": "cell-record.json"
}
},
"total_row_count": {
"type": "integer",
"minimum": 0,
"description": "Total number of data rows in the worksheet (excluding header)"
},
"worksheet_list": {
"type": "array",
"description": "List of worksheets in the workbook (returned by workbook operations)",
"items": {
"type": "object",
"properties": {
"sheet_name": {
"type": "string"
},
"sheet_index": {
"type": "integer"
}
}
}
},
"error_code": {
"type": "integer",
"description": "Numeric error code (present when status is failure)"
},
"error_message": {
"type": "string",
"description": "Human-readable error description (present when status is failure)"
}
},
"required": ["status"],
"if": {
"properties": {
"status": { "const": "failure" }
}
},
"then": {
"required": ["error_code", "error_message"]
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/api-response"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.