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/b3-public-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: B3 Public API
version: '1.0'
description: 'Operations tagged Public across 2 of this provider''s published API definitions: b3-b3os-workflow-openapi.json, b3-public-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.b3os.org/v1
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Public
paths:
/v1/public/contact:
post:
description: 'Submit the public contact form. Delivers an email to the
configured recipient via the central B3 Notifications API. No
auth; IP-rate-limited (see configs.contact.rate_limit_per_hour).'
requestBody:
content:
application/json:
schema:
oneOf:
- type: object
- $ref: '#/components/schemas/SubmitContactFormRequest'
summary: body
description: Contact form payload
description: Contact form payload
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/SubmitContactFormSuccessResponse'
description: OK
'400':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Bad Request
'429':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Too Many Requests
'502':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Bad Gateway
'503':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Service Unavailable
tags:
- Public
/v1/public/executions/{id}:
get:
description: Get the current status and event timeline for a public execution
parameters:
- description: Execution ID
in: path
name: id
required: true
schema:
type: string
- description: Client token returned when the execution was created
in: query
name: token
required: true
schema:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GetPublicExecutionSuccessResponse'
description: OK
'400':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Bad Request
'401':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Unauthorized
tags:
- Public
/v1/public/runs/by-tx/{txHash}:
get:
description: Find a run by trigger transaction hash (no auth required)
parameters:
- description: Transaction Hash
in: path
name: txHash
required: true
schema:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GetPublicRunByTxSuccessResponse'
description: OK
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
/v1/public/runs/{id}:
get:
description: Get a public run by ID
parameters:
- description: Run ID
in: path
name: id
required: true
schema:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GetPublicRunSuccessResponse'
description: OK
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
/v1/public/workflows/{id}:
get:
description: Get a public workflow by visibility
parameters:
- description: Workflow ID
in: path
name: id
required: true
schema:
type: string
- description: Workflow version
in: query
name: v
schema:
type: integer
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GetPublicWorkflowSuccessResponse'
description: OK
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
/v1/public/workflows/{id}/executions:
post:
description: Create a client-trackable execution session for a public_execute workflow
parameters:
- description: Workflow ID
in: path
name: id
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
oneOf:
- type: object
- $ref: '#/components/schemas/CreatePublicExecutionParams'
summary: body
description: Execution metadata
description: Execution metadata
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CreateExecutionSuccessResponse'
description: OK
'400':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Bad Request
'403':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Forbidden
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
'429':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Too Many Requests
tags:
- Public
/v1/public/workflows/{id}/meta:
get:
description: 'Get public metadata (name, description) for a workflow.
No auth required — intentionally unauthenticated for OG image generation.
Only returns title and description; no sensitive data is exposed.'
parameters:
- description: Workflow ID
in: path
name: id
required: true
schema:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GetPublicMetaSuccessResponse'
description: OK
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
/v1/public/workflows/{id}/run:
post:
description: Trigger a run for a public_execute workflow
parameters:
- description: Workflow ID
in: path
name: id
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
oneOf:
- type: object
- additionalProperties: {}
title: body
type: object
description: Trigger payload
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.SuccessResponse'
description: OK
'403':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Forbidden
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
/v1/public/workflows/{id}/runs:
get:
description: List runs for a public workflow
parameters:
- description: Workflow ID
in: path
name: id
required: true
schema:
type: string
- description: Number of items (default 20, max 100)
in: query
name: limit
schema:
type: integer
- description: Offset for pagination (default 0)
in: query
name: offset
schema:
type: integer
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ListPublicRunsSuccessResponse'
description: OK
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
/v1/public/workflows/{id}/widget:
get:
description: Get public widget configuration for a workflow (no auth required)
parameters:
- description: Workflow ID
in: path
name: id
required: true
schema:
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GetPublicWidgetSuccessResponse'
description: OK
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse'
description: Not Found
tags:
- Public
components:
schemas:
GetPublicMetaResponse:
properties:
description:
description: Description is a short summary of what the workflow does.
type: string
name:
description: Name is the display name of the workflow.
type: string
workflowId:
description: WorkflowID is the workflow identifier.
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.CommentReply:
properties:
createdAt:
type: string
createdBy:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.StickyNoteUser'
id:
type: string
text:
type: string
updatedAt:
type: string
type: object
CreatePublicExecutionParams:
properties:
clientSafeMetadata:
additionalProperties: {}
type: object
externalRef:
type: string
idempotencyKey:
type: string
requestPayload:
additionalProperties: {}
type: object
sourceEntityId:
type: string
sourceEntityType:
type: string
sourceSystem:
type: string
required:
- sourceEntityType
- sourceSystem
type: object
SubmitContactFormRequest:
properties:
email:
type: string
firstName:
type: string
lastName:
type: string
message:
type: string
phone:
type: string
required:
- email
- firstName
- lastName
- message
type: object
GetPublicRunByTxResponse:
properties:
executionState:
additionalProperties:
$ref: '#/components/schemas/PublicNodeState'
description: Current state of each node
type: object
finishedAt:
type: string
nodes:
additionalProperties:
$ref: '#/components/schemas/PublicWorkflowNode'
description: Step-by-step execution data
type: object
runId:
type: string
startedAt:
type: string
status:
description: '"running", "success", "failure"'
type: string
workflowId:
type: string
type: object
GetPublicWidgetSuccessResponse:
properties:
code:
example: 200
type: integer
data:
$ref: '#/components/schemas/GetPublicWidgetResponse'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
CreateExecutionData:
properties:
clientToken:
type: string
execution:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.ExternalExecution'
type: object
PublicExecutionData:
properties:
checkoutSessionId:
type: string
clientSafeMetadata:
additionalProperties: {}
type: object
createdAt:
type: string
events:
items:
$ref: '#/components/schemas/PublicExecutionEvent'
type: array
uniqueItems: false
finishedAt:
type: string
id:
type: string
message:
type: string
orderId:
type: string
paymentStatus:
type: string
runId:
type: string
startedAt:
type: string
status:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.ExternalExecutionStatus'
workflowId:
type: string
type: object
PublicExecutionEvent:
properties:
createdAt:
type: string
eventType:
type: string
id:
type: string
level:
type: string
message:
type: string
nodeId:
type: string
runId:
type: string
title:
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.StickyNoteSize:
properties:
height:
type: number
width:
type: number
type: object
GetPublicRunSuccessResponse:
properties:
code:
example: 0
type: integer
data:
$ref: '#/components/schemas/GetPublicRunByTxResponse'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowInput:
properties:
description:
type: string
key:
type: string
required:
type: boolean
type:
description: '"string", "number", "boolean", "object", "array"'
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowNode:
properties:
blockContext:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.BlockNodeContext'
branch:
description: '"then"/"else" (if parent), "resumed"/"timed_out" (wait parent)'
type: string
children:
items:
type: string
type: array
uniqueItems: false
connector:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.ConnectorReference'
description:
description: AI-generated 1-sentence description
type: string
loopBody:
description: Loop body nodes (only for for-each nodes)
items:
type: string
type: array
uniqueItems: false
payload:
additionalProperties: {}
type: object
resultSchema:
additionalProperties: {}
description: 'ResultSchema describes the output structure of this node (populated dynamically for x402 endpoints).
This is used by the frontend to show available output variables in the variable picker.'
type: object
titleOverride:
description: AI-generated short title (2-6 words), only when more descriptive than default
type: string
type:
type: string
required:
- payload
- type
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.ErrorResponse:
properties:
code:
type: integer
details:
items: {}
type: array
uniqueItems: false
message:
type: string
requestId:
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.BlockOutputProperty:
properties:
description:
type: string
properties:
additionalProperties:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.BlockOutputProperty'
type: object
type:
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.PropVisibleWhen:
description: 'VisibleWhen controls conditional visibility: show this prop only when
the referenced prop has the specified value.'
properties:
propKey:
type: string
value: {}
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.PropSchemaSummaryAggregate:
properties:
column:
description: Column key in PropSchema.Columns.
type: string
label:
description: 'Optional override for the displayed label. If empty, the frontend
derives a label from the column + reducer (e.g. "Total amount").'
type: string
reduce:
description: 'Reducer name. Matches the key in the frontend cell-spec''s
`aggregate` map (currently: "sum", "count"). Unknown reducers are
silently skipped on the frontend.'
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowVisibility:
enum:
- private
- org
- public_view
- public_execute
type: string
x-enum-varnames:
- WorkflowVisibilityPrivate
- WorkflowVisibilityOrg
- WorkflowVisibilityPublicView
- WorkflowVisibilityPublicExecute
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.TemplateProp:
properties:
default: {}
description:
type: string
key:
type: string
name:
type: string
properties:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.PropSchema'
required:
type: boolean
sensitive:
type: boolean
type:
description: '"string", "number", "integer", "boolean", "object" (for csvTable)'
type: string
type: object
GetPublicWorkflowSuccessResponse:
properties:
code:
example: 200
type: integer
data:
$ref: '#/components/schemas/GetPublicWorkflowData'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
PublicRunListItem:
properties:
finishedAt:
type: string
id:
type: string
startedAt:
type: string
status:
type: string
workflowId:
type: string
type: object
PublicNodeState:
properties:
finishedAt:
description: When execution finished
type: string
startedAt:
description: When execution started
type: string
status:
description: '"pending", "running", "success", "failure", "skipped"'
type: string
type:
description: Node type (e.g., "erc20-receive", "send-slack-message")
type: string
type: object
PublicWidgetData:
description: Widget contains the public widget configuration with derived trigger values
properties:
buttonLabel:
description: ButtonLabel is the text displayed on the trigger button
type: string
chainId:
description: ChainID is derived from the trigger's chainId
type: integer
description:
description: Description explains what the workflow does
type: string
enabled:
description: Enabled controls whether the public widget is active
type: boolean
maxAmount:
description: MaxAmount is the maximum amount allowed per trigger (in smallest unit)
type: string
minAmount:
description: MinAmount is the minimum amount required to trigger (in smallest unit)
type: string
recipientAddress:
description: RecipientAddress is derived from the trigger's toAddress/contractAddress
type: string
title:
description: Title is the display title for the widget
type: string
tokenAddress:
description: TokenAddress is derived from the trigger's tokenAddress (empty for native token)
type: string
type: object
ListPublicRunsSuccessResponse:
properties:
code:
example: 0
type: integer
data:
$ref: '#/components/schemas/PaginatedData-schemas_PublicRunListItem'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.TemplateVisibility:
enum:
- org
- public
- org
- public
type: string
x-enum-comments:
TemplateVisibilityOrg: Only visible to organization members
TemplateVisibilityPublic: Visible to everyone
x-enum-varnames:
- TemplateVisibilityOrg
- TemplateVisibilityPublic
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.StickyNote:
properties:
color:
type: string
createdAt:
type: string
createdBy:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.StickyNoteUser'
id:
type: string
position:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.NodePosition'
size:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.StickyNoteSize'
text:
type: string
updatedAt:
type: string
zIndex:
type: integer
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.PropSource:
properties:
fieldPath:
type: string
nodeId:
type: string
nodeLabel:
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowDefinition:
description: 'Definition is the inline workflow graph to analyze. Same shape as a
saved workflow''s definition. Unlike the ephemeral-run endpoint there
is no trigger restriction — analysis is read-only and method-agnostic.'
properties:
blockExpansions:
additionalProperties:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.BlockExpansionMeta'
description: Set on run snapshots only (not workflow DB)
type: object
inputSchema:
items:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowInput'
type: array
uniqueItems: false
nodes:
additionalProperties:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowNode'
type: object
sensitivePropKeys:
description: 'Legacy: kept for old runs; no longer populated for new workflows'
items:
type: string
type: array
uniqueItems: false
triggerNodeIds:
description: 'TriggerNodeIDs lists the node IDs that are trigger (root) nodes. Every
workflow declares this — single-trigger workflows ship ["root"] (the
legacy node id), multi-trigger workflows list every trigger node id.
Treating single-trigger as a forest-of-1 removes the two-path branching
throughout the BE + FE; older rows without the field are backfilled by
migration 000282 and the field-missing path stays as a read-side safety
net (see FindTriggerNodeIDs) but is no longer exercised by saves.
"root" is also a runtime alias for "the trigger that fired this run" —
{{root.X}} variable references resolve to the firing trigger regardless
of which trigger fired. Don''t repurpose the literal "root" as a trigger
id on a multi-trigger workflow.'
items:
type: string
type: array
uniqueItems: false
variableDefs:
description: 'VariableDefs is a snapshot of the workflow''s declared variables at run
creation time. The canonical source lives on the workflows row
(Workflow.VariableDefs column). Snapshotted into the run definition
so the worker can resolve {{$vars.x}} lookups and route variable-action
writes to the right scope without an extra DB round trip.'
items:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.VariableDef'
type: array
uniqueItems: false
required:
- nodes
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.BlockNodeContext:
description: 'BlockContext is set on nodes that were expanded from a block.
It traces the node back to its source block and carries the inputMapping
needed to resolve {{$inputs.key}} references at execution time.'
properties:
blockId:
description: Block entity ID
type: string
blockNodeId:
description: Original block node ID in the workflow
type: string
blockVersion:
description: Pinned block version
type: integer
inputMapping:
additionalProperties: {}
description: From block node payload (consumer-authored)
type: object
type: object
SubmitContactFormSuccessResponse:
properties:
code:
type: integer
data:
$ref: '#/components/schemas/SubmitContactFormResponse'
message:
type: string
type: object
GetPublicMetaSuccessResponse:
properties:
code:
example: 200
type: integer
data:
$ref: '#/components/schemas/GetPublicMetaResponse'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
GetPublicWorkflowData:
properties:
createdAt:
type: string
definition:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowDefinition'
description:
type: string
id:
type: string
name:
type: string
status:
type: string
type:
type: string
version:
type: integer
visibility:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.WorkflowVisibility'
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.PropSchemaSummary:
description: 'Summary drives the csvTable footer summary. Nil means no summary is
rendered. See PropSchemaSummary for details.'
properties:
aggregates:
description: Aggregates declared in display order, left-to-right.
items:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.PropSchemaSummaryAggregate'
type: array
uniqueItems: false
position:
description: 'Position in the grid. "footer" (default) renders inline under the
table. "none" suppresses even when aggregates are declared — use to
disable inherited summaries. Other values reserved.'
type: string
type: object
? github_com_b3-fun_b3-mono_services_b3os-workflow_PaginatedData-github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity_Template
: properties:
hasMore:
type: boolean
items:
items:
$ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.Template'
type: array
uniqueItems: false
limit:
type: integer
offset:
type: integer
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_entity.StickyNoteUser:
properties:
clientId:
type: string
name:
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_http.SuccessResponse:
allOf:
- $ref: '#/components/schemas/data'
properties:
code:
type: integer
data: {}
message:
type: string
requestId:
type: string
type: object
GetPublicExecutionSuccessResponse:
properties:
code:
example: 200
type: integer
data:
$ref: '#/components/schemas/PublicExecutionData'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
CreateExecutionSuccessResponse:
properties:
code:
example: 200
type: integer
data:
$ref: '#/components/schemas/CreateExecutionData'
message:
example: success
type: string
requestId:
example: abc-123
type: string
type: object
github_com_b3-fun_b3-mono_services_b3os-workflow_internal_pkg_ent
# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/b3/refs/heads/main/openapi/b3-public-api-openapi.yml