Zest Equity · Arazzo Workflow

Zest — authenticate and create an SPV request

Version 1.0.0

Mint an access token then submit and read back a contract-validated SPV creation request.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CompanyFintechPrivate MarketsSPVInvestmentsEscrowFund AdministrationMENAWebhookRegulatedArazzoWorkflows

Provider

zest-equity

Workflows

createSpvRequest
Exchange a JWT assertion for a token, create an SPV request idempotently, then fetch it.
3 steps inputs: assertion, attributes, idempotencyKey, templateId, templateVersion outputs: spvRequestSlug
1
authenticate
2
create
3
fetch

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zest — authenticate and create an SPV request
  version: 1.0.0
  summary: Mint an access token then submit and read back a contract-validated SPV creation request.
sourceDescriptions:
- name: authenticationApi
  url: ../openapi/zest-equity-authentication-api-openapi.yml
  type: openapi
- name: spvRequestsApi
  url: ../openapi/zest-equity-spv-requests-api-openapi.yml
  type: openapi
workflows:
- workflowId: createSpvRequest
  summary: Exchange a JWT assertion for a token, create an SPV request idempotently, then fetch it.
  inputs:
    type: object
    properties:
      assertion: {type: string, description: EdDSA-signed JWT assertion}
      idempotencyKey: {type: string, description: v4 UUID}
      templateId: {type: string}
      templateVersion: {type: string}
      attributes: {type: object}
  steps:
  - stepId: authenticate
    operationId: exchangeJwtAssertion
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        grant_type: urn:ietf:params:oauth:grant-type:jwt-bearer
        assertion: $inputs.assertion
    outputs:
      accessToken: $response.body#/accessToken
  - stepId: create
    operationId: createSpvRequest
    parameters:
    - {name: Idempotency-Key, in: header, value: $inputs.idempotencyKey}
    - {name: Authorization, in: header, value: "Bearer $steps.authenticate.outputs.accessToken"}
    requestBody:
      contentType: application/json
      payload:
        templateId: $inputs.templateId
        templateVersion: $inputs.templateVersion
        attributes: $inputs.attributes
    successCriteria:
    - {condition: $statusCode == 201}
    outputs:
      spvRequestSlug: $response.body#/spvRequestSlug
      status: $response.body#/status
  - stepId: fetch
    operationId: getSpvRequest
    parameters:
    - {name: slug, in: path, value: $steps.create.outputs.spvRequestSlug}
    - {name: Authorization, in: header, value: "Bearer $steps.authenticate.outputs.accessToken"}
    successCriteria:
    - {condition: $statusCode == 200}
  outputs:
    spvRequestSlug: $steps.create.outputs.spvRequestSlug

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow 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.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/zest-equity-create-spv-request"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.