Quick Start
Get started with the Zoho Show API in just a few steps:
- Pick any resource category from the sidebar
- Browse the available endpoints and review their parameters and responses
- Use the interactive status code picker to explore success and error payloads
- Copy ready-to-use code samples in your preferred programming language
Making Your First Request
Here's a simple example to get you started with the Show API:
Before you begin: set up authentication first — see the Authentication page to obtain an OAuth 2.0 access token or an API key. The examples below use show.zoho.com; replace the host with your account's data center (US, IN, EU, AU, CA, SA, UAE, CN, JP, SG). Every resource page has a Data Center selector.
cURL
curl -X GET "https://show.zoho.com/api/v1/presentation" \
-H "Authorization: Zoho-oauthtoken YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json"
Response Format
All API responses follow a consistent JSON format:
JSON Response
{
"data": {
"total_count": "950",
"resources": [
{
"document_name": "My Presentation",
"resource_id": "cpnv3d0203ec89cba4207ba255d785dfe125c",
"document_id": "106689000002311002",
"author_display_name": "Jane Smith",
"last_modified_time": "1782470710069"
}
]
},
"request_uri": "/api/v1/presentation",
"status": "success"
}