Netter step-output API

The step-output API from Netter — 2 operation(s) for step-output.

Operations 2

GET /api/v1/steps/{step_id}/output Get Step Output #
POST /api/v1/steps/{step_id}/output/query Query Step Output #

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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/netter-step-output-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

netter-step-output-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DMI Backend actions Step Output API
  version: 0.1.0
servers:
- url: https://api.netter.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: step-output
paths:
  /api/v1/steps/{step_id}/output:
    get:
      tags:
      - step-output
      summary: Get Step Output
      description: Return schema + 20-row sample (or scalar JSON) for a step's latest output.
      operationId: get_step_output_api_v1_steps__step_id__output_get
      parameters:
      - name: step_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Step Id
      - name: table
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Output table name for multi-output steps
          title: Table
        description: Output table name for multi-output steps
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StepOutputResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/steps/{step_id}/output/query:
    post:
      tags:
      - step-output
      summary: Query Step Output
      description: Run a DuckDB SQL query over the step's latest Parquet output (table alias 'data').
      operationId: query_step_output_api_v1_steps__step_id__output_query_post
      parameters:
      - name: step_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Step Id
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 10000
          default: 1000
          title: Limit
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StepOutputQueryRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataQueryResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    StepOutputSchemaField:
      properties:
        name:
          type: string
          title: Name
        type:
          type: string
          title: Type
      type: object
      required:
      - name
      - type
      title: StepOutputSchemaField
    DataQueryResponse:
      properties:
        columns:
          items:
            type: string
          type: array
          title: Columns
        rows:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Rows
        total_rows:
          type: integer
          title: Total Rows
        truncated:
          type: boolean
          title: Truncated
      type: object
      required:
      - columns
      - rows
      - total_rows
      - truncated
      title: DataQueryResponse
    StepOutputQueryRequest:
      properties:
        sql:
          type: string
          title: Sql
        table:
          anyOf:
          - type: string
          - type: 'null'
          title: Table
      type: object
      required:
      - sql
      title: StepOutputQueryRequest
    StepRunSummary:
      properties:
        status:
          type: string
          title: Status
        started_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Started At
        finished_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Finished At
      type: object
      required:
      - status
      title: StepRunSummary
    StepOutputResponse:
      properties:
        format:
          type: string
          title: Format
        table:
          anyOf:
          - type: string
          - type: 'null'
          title: Table
        available_tables:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Available Tables
        schema:
          anyOf:
          - items:
              $ref: '#/components/schemas/StepOutputSchemaField'
            type: array
          - type: 'null'
          title: Schema
        rows:
          anyOf:
          - items:
              additionalProperties: true
              type: object
            type: array
          - type: 'null'
          title: Rows
        row_count_sample:
          anyOf:
          - type: integer
          - type: 'null'
          title: Row Count Sample
        row_count_total:
          anyOf:
          - type: integer
          - type: 'null'
          title: Row Count Total
        meta:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Meta
        value:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Value
        step_run:
          $ref: '#/components/schemas/StepRunSummary'
      type: object
      required:
      - format
      - step_run
      title: StepOutputResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError