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/trato-spectators-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
OpenAPI Specification
openapi: 3.2.0
info:
title: TRATO Contract Contracts Spectators API
version: '2.0'
description: TRATO is an AI-powered Contract Lifecycle Management (CLM) and electronic signature platform. This OpenAPI description is generated from TRATO's public developer documentation (developer.trato.io) — it faithfully represents the documented Contracts and Templates operations, their paths, methods and the JWT bearer authentication. TRATO does not publish a machine-readable spec, so request/response schemas here reflect only fields documented in the reference.
contact:
name: TRATO API Support
url: https://developer.trato.io/
x-logo:
url: https://trato.io
servers:
- url: https://enterprise.api.trato.io
description: Production
security:
- bearerAuth: []
tags:
- name: Spectators
description: Manage read-only observers of a contract.
paths:
/api/contracts/{contractID}/spectators:
get:
tags:
- Spectators
operationId: getSpectators
summary: Get the spectators of a contract
parameters:
- name: contractID
in: path
required: true
schema:
type: string
responses:
'200':
description: Spectators.
post:
tags:
- Spectators
operationId: addSpectator
summary: Add a spectator to a contract
parameters:
- name: contractID
in: path
required: true
schema:
type: string
responses:
'200':
description: Spectator added.
/api/contracts/{contractID}/spectators/{spectatorID}:
put:
tags:
- Spectators
operationId: updateSpectator
summary: Update a spectator
parameters:
- name: contractID
in: path
required: true
schema:
type: string
- name: spectatorID
in: path
required: true
schema:
type: string
responses:
'200':
description: Spectator updated.
delete:
tags:
- Spectators
operationId: removeSpectator
summary: Remove a spectator
parameters:
- name: contractID
in: path
required: true
schema:
type: string
- name: spectatorID
in: path
required: true
schema:
type: string
responses:
'200':
description: Spectator removed.
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: 'JWT bearer token sent as `Authorization: Bearer {TOKEN}` on every call. Obtain the token from your TRATO profile security settings.'
x-generated: '2026-07-21'
x-method: generated
x-source: https://developer.trato.io/contracts and https://developer.trato.io/templates (documented endpoints; TRATO publishes no machine-readable OpenAPI)