> ## Documentation Index
> Fetch the complete documentation index at: https://magica.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Start workflow node run

> Run a single node inside an existing workflow.

Use this endpoint to run one node from a saved workflow without executing the full graph. This is different from [`POST /v1/nodes/{nodeType}/run`](/api-reference/nodes/run), which runs a standalone model outside workflow context.


## OpenAPI

````yaml POST /v1/runs/node
openapi: 3.1.0
info:
  title: Magica REST API
  version: 1.0.0
  description: >-
    REST API for managing Magica resources. Authenticate public endpoints with
    your Magica API key: Authorization: Bearer gx_xxx.
servers:
  - url: https://api.magica.com/api
security:
  - bearerAuth: []
paths:
  /v1/runs/node:
    post:
      tags:
        - Public REST
      summary: POST /api/v1/runs/node
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
              description: RunNodeInputSchema
      responses:
        '202':
          description: Accepted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````