Forum · Arazzo Workflow

Forum — discover a market and place an order

Version 1.0.0

Check exchange status, list available attention-index markets, inspect one market, place a limit order (idempotent via clientOrderId), confirm the order, then read the resulting account and position. Public steps need no auth; order/account steps require a `trade`/`read` API key (HMAC-SHA256).

1 workflow 5 source APIs 1 provider
View Spec View on GitHub CompanyTradingExchangePerpetual FuturesMarket DataAttention EconomyFintechWebSocketReal-TimeArazzoWorkflows

Provider

forum

Workflows

discoverAndPlaceOrder
Discover a market and place a limit order, then confirm position.
7 steps inputs: clientOrderId, price, qty, ticker outputs: orderId
1
exchangeStatus
2
listMarkets
3
getMarket
4
placeOrder
5
confirmOrder
6
readPositions
7
readAccount

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Forum — discover a market and place an order
  version: 1.0.0
  description: >-
    Check exchange status, list available attention-index markets, inspect one
    market, place a limit order (idempotent via clientOrderId), confirm the
    order, then read the resulting account and position. Public steps need no
    auth; order/account steps require a `trade`/`read` API key (HMAC-SHA256).
sourceDescriptions:
- name: accountApi
  url: ../openapi/forum-account-api-openapi.yml
  type: openapi
- name: exchangeApi
  url: ../openapi/forum-exchange-api-openapi.yml
  type: openapi
- name: marketsApi
  url: ../openapi/forum-markets-api-openapi.yml
  type: openapi
- name: ordersApi
  url: ../openapi/forum-orders-api-openapi.yml
  type: openapi
- name: positionsApi
  url: ../openapi/forum-positions-api-openapi.yml
  type: openapi
workflows:
- workflowId: discoverAndPlaceOrder
  summary: Discover a market and place a limit order, then confirm position.
  inputs:
    type: object
    properties:
      ticker:
        type: string
      qty:
        type: number
      price:
        type: number
      clientOrderId:
        type: string
  steps:
  - stepId: exchangeStatus
    operationId: getExchangeStatus
    successCriteria:
    - condition: $statusCode == 200
  - stepId: listMarkets
    operationId: listMarkets
    successCriteria:
    - condition: $statusCode == 200
  - stepId: getMarket
    operationId: getMarket
    parameters:
    - name: ticker
      in: path
      value: $inputs.ticker
    successCriteria:
    - condition: $statusCode == 200
  - stepId: placeOrder
    operationId: createOrder
    requestBody:
      contentType: application/json
      payload:
        ticker: $inputs.ticker
        side: buy
        qty: $inputs.qty
        price: $inputs.price
        orderType: limit
        timeInForce: goodTillCancel
        clientOrderId: $inputs.clientOrderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      orderId: $response.body#/orderId
  - stepId: confirmOrder
    operationId: getOrderByClientId
    parameters:
    - name: clientOrderId
      in: path
      value: $inputs.clientOrderId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: readPositions
    operationId: listPositions
    successCriteria:
    - condition: $statusCode == 200
  - stepId: readAccount
    operationId: getAccount
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    orderId: $steps.placeOrder.outputs.orderId

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/forum-place-order"
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.