Work with this as data
Every API 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 apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.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 API
curl "https://apis.io/api/v1/apis/smartsheet-sheets-api"
All apis
curl "https://apis.io/api/v1/apis?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.
OpenAPI Specification
openapi: 3.2.0
info:
title: Smartsheet Columns Sheets API
description: Smartsheet is a SaaS work management and collaboration platform. The Smartsheet REST API v2.0 provides programmatic access to sheets, rows, columns, reports, workspaces, users, attachments, and webhooks. Authentication uses OAuth 2.0 or Bearer API access tokens.
version: 2.0.0
contact:
name: Smartsheet API
url: https://developers.smartsheet.com/api/smartsheet/openapi
servers:
- url: https://api.smartsheet.com/2.0
description: Smartsheet REST API (US)
- url: https://api.smartsheet.eu/2.0
description: Smartsheet REST API (EU)
- url: https://api.smartsheet.au/2.0
description: Smartsheet REST API (AU)
security:
- ApiToken: []
- OAuth2: []
tags:
- name: Sheets
description: Manage Smartsheet sheets.
paths:
/sheets:
get:
summary: List sheets
description: Retrieve a list of sheets the user has access to.
operationId: listSheets
tags:
- Sheets
responses:
'200':
description: A list of sheets.
content:
application/json:
schema:
type: object
post:
summary: Create sheet
description: Create a new sheet in the user's "Sheets" folder.
operationId: createSheet
tags:
- Sheets
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: Sheet created.
content:
application/json:
schema:
type: object
/sheets/{sheetId}:
get:
summary: Get sheet
description: Retrieve the specified sheet, including its rows, columns, and cells.
operationId: getSheet
tags:
- Sheets
parameters:
- in: path
name: sheetId
required: true
schema:
type: integer
format: int64
responses:
'200':
description: Sheet details.
content:
application/json:
schema:
type: object
delete:
summary: Delete sheet
description: Delete the specified sheet.
operationId: deleteSheet
tags:
- Sheets
parameters:
- in: path
name: sheetId
required: true
schema:
type: integer
format: int64
responses:
'200':
description: Sheet deleted.
content:
application/json:
schema:
type: object
components:
securitySchemes:
ApiToken:
type: http
scheme: bearer
description: Smartsheet API access token sent in the Authorization header as a Bearer token.
OAuth2:
type: oauth2
description: Smartsheet OAuth 2.0 authorization.
flows:
authorizationCode:
authorizationUrl: https://app.smartsheet.com/b/authorize
tokenUrl: https://api.smartsheet.com/2.0/token
scopes:
READ_SHEETS: View sheets
WRITE_SHEETS: Edit sheets
SHARE_SHEETS: Share sheets
DELETE_SHEETS: Delete sheets
ADMIN_SHEETS: Sheet admin
ADMIN_WORKSPACES: Workspace admin
ADMIN_USERS: User admin
ADMIN_WEBHOOKS: Webhook admin
READ_USERS: View users
READ_CONTACTS: View contacts