Tinybird Pipes API

Manage pipes, API endpoints, and materialized views

Operations 9

GET /v0/pipes/ List Pipes #
POST /v0/pipes/ Create Pipe #
GET /v0/pipes/{name} Get Pipe #
PUT /v0/pipes/{name} Update Pipe #
DELETE /v0/pipes/{name} Delete Pipe #
POST /v0/pipes/{name}/nodes Create Pipe Node #
PUT /v0/pipes/{name}/nodes/{nodeId} Update Pipe Node #
DELETE /v0/pipes/{name}/nodes/{nodeId} Delete Pipe Node #
GET /v0/pipes/{name}/explain Explain Pipe Query #

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/tinybird-pipes-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

tinybird-pipes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tinybird Analyze Pipes API
  description: Tinybird is a real-time data platform that allows you to ingest, process, and expose data through low-latency, high-concurrency APIs. The Tinybird API provides endpoints for managing data sources, pipes, queries, tokens, jobs, organizations, events, environment variables, and sink pipes.
  version: v0
  contact:
    name: Tinybird Support
    url: https://www.tinybird.co/docs
  x-logo:
    url: https://www.tinybird.co/logo.png
servers:
- url: https://api.tinybird.co
  description: Europe (Frankfurt) - Default
- url: https://api.us-east.tinybird.co
  description: US East (Virginia)
- url: https://api.europe-west2.gcp.tinybird.co
  description: Europe (London)
- url: https://api.northamerica-northeast2.gcp.tinybird.co
  description: North America (Toronto)
security:
- bearerAuth: []
tags:
- name: Pipes
  description: Manage pipes, API endpoints, and materialized views
paths:
  /v0/pipes/:
    get:
      operationId: listPipes
      summary: List Pipes
      description: List all pipes in the workspace.
      tags:
      - Pipes
      responses:
        '200':
          description: List of pipes
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipeList'
    post:
      operationId: createPipe
      summary: Create Pipe
      description: Create a new pipe with SQL transformation nodes.
      tags:
      - Pipes
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PipeCreate'
      responses:
        '200':
          description: Pipe created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pipe'
  /v0/pipes/{name}:
    get:
      operationId: getPipe
      summary: Get Pipe
      description: Retrieve details about a specific pipe.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Pipe details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pipe'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: updatePipe
      summary: Update Pipe
      description: Update pipe attributes.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PipeUpdate'
      responses:
        '200':
          description: Pipe updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pipe'
    delete:
      operationId: deletePipe
      summary: Delete Pipe
      description: Delete a pipe and all its nodes.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Pipe deleted successfully
  /v0/pipes/{name}/nodes:
    post:
      operationId: createPipeNode
      summary: Create Pipe Node
      description: Add a new SQL node to an existing pipe.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PipeNodeCreate'
      responses:
        '200':
          description: Node created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipeNode'
  /v0/pipes/{name}/nodes/{nodeId}:
    put:
      operationId: updatePipeNode
      summary: Update Pipe Node
      description: Update an existing pipe node's SQL or description.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PipeNodeUpdate'
      responses:
        '200':
          description: Node updated successfully
    delete:
      operationId: deletePipeNode
      summary: Delete Pipe Node
      description: Delete a specific node from a pipe.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Node deleted successfully
  /v0/pipes/{name}/explain:
    get:
      operationId: explainPipe
      summary: Explain Pipe Query
      description: Get the query execution plan for a pipe.
      tags:
      - Pipes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Query execution plan
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    PipeList:
      type: object
      properties:
        pipes:
          type: array
          items:
            $ref: '#/components/schemas/Pipe'
    PipeNodeCreate:
      type: object
      required:
      - sql
      properties:
        name:
          type: string
        sql:
          type: string
        description:
          type: string
    PipeNode:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        sql:
          type: string
        created_at:
          type: string
          format: date-time
    PipeCreate:
      type: object
      required:
      - name
      properties:
        name:
          type: string
        description:
          type: string
        nodes:
          type: array
          items:
            $ref: '#/components/schemas/PipeNodeCreate'
    Error:
      type: object
      properties:
        error:
          type: string
        documentation:
          type: string
    Pipe:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        nodes:
          type: array
          items:
            $ref: '#/components/schemas/PipeNode'
        type:
          type: string
          enum:
          - standard
          - materialized
          - sink
          - copy
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    PipeNodeUpdate:
      type: object
      properties:
        sql:
          type: string
        description:
          type: string
    PipeUpdate:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Tinybird authentication token