Zest Equity Contracts API
Read-only access to the spaas-contract registry (templates, catalogs, primitives, samples) used to validate SPV-request `attributes`.
Read-only access to the spaas-contract registry (templates, catalogs, primitives, samples) used to validate SPV-request `attributes`.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/zest-equity-contracts-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Zest equity public api Authentication Contracts API
version: 0.1.0
description: OAuth 2.0 JWT-Bearer assertion grant. Exchange a partner-signed JWT for a short-lived bearer access token, then send that token in the Authorization header on every partner API call.
servers:
- url: https://sandbox-api.zestequity.com
description: Staging
tags:
- name: Contracts
description: Read-only access to the spaas-contract registry (templates, catalogs, primitives, samples) used to validate SPV-request `attributes`.
paths:
/v1/contracts:
get:
tags:
- Contracts
summary: List available contract versions
operationId: list_contract_versions_v1_contracts_get
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
/v1/contracts/templates/{version}:
get:
tags:
- Contracts
summary: List template definitions for a version
operationId: list_templates_v1_contracts_templates__version__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/templates/{version}/{template_name}:
get:
tags:
- Contracts
summary: Retrieve a specific template
operationId: get_template_v1_contracts_templates__version___template_name__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
- required: true
schema:
type: string
title: Template Name
name: template_name
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/catalogs/{version}:
get:
tags:
- Contracts
summary: List attribute catalogs for a version
operationId: list_catalogs_v1_contracts_catalogs__version__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/catalogs/{version}/{catalog_name}:
get:
tags:
- Contracts
summary: Retrieve a specific attribute catalog
operationId: get_catalog_v1_contracts_catalogs__version___catalog_name__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
- required: true
schema:
type: string
title: Catalog Name
name: catalog_name
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/primitives/{version}:
get:
tags:
- Contracts
summary: List primitive/type specifications for a version
operationId: list_primitives_v1_contracts_primitives__version__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/primitives/{version}/{primitive_name}:
get:
tags:
- Contracts
summary: Retrieve a primitive/type definition
operationId: get_primitive_v1_contracts_primitives__version___primitive_name__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
- required: true
schema:
type: string
title: Primitive Name
name: primitive_name
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/samples/{version}:
get:
tags:
- Contracts
summary: List sample payloads for a version
operationId: list_samples_v1_contracts_samples__version__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/contracts/samples/{version}/{sample_name}:
get:
tags:
- Contracts
summary: Retrieve a sample payload
operationId: get_sample_v1_contracts_samples__version___sample_name__get
parameters:
- required: true
schema:
type: string
title: Version
name: version
in: path
- required: true
schema:
type: string
title: Sample Name
name: sample_name
in: path
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
type: object
required:
- loc
- msg
- type
title: ValidationError
securitySchemes:
HTTPBearer:
type: http
scheme: bearer