ActionTinybirdUpdated June 2026

How do I query a published Tinybird API?

Short answer: You can query api endpoint in Tinybird by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Tinybird Query API Endpoint action to a workflow, map its 2 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Query API Endpoint in Tinybird — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Pipe Name
pipeName
stringRequiredPipe Name. e.g. "my_analytics_endpoint"
Parameters
params
jsonOptionalParameters. (JSON object). e.g. "{"date_from":"2026-04-01","limit":10}"
Sample request
{
"pipeName": "my_analytics_endpoint",
"params": "{\"date_from\":\"2026-04-01\",\"limit\":10}"
}
Returns
{
"data": [
{
"date": "2026-04-11",
"users": 800,
"pageviews": 1500
}
],
"rows": 1,
"statistics": {
"elapsed": 0.01,
"rows_read": 1000
}
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Query API Endpoint.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Query API Endpoint.

What does the Query API Endpoint action do in Tinybird?
Queries a published Tinybird API endpoint with the supplied parameters and returns the JSON response. Use it to embed real-time analytics or to drive in-app charts.
What inputs does Query API Endpoint require?
Required: Pipe Name. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Tinybird returns an error?
The workflow pauses on the failed node, the error message is captured in the run log, and you can retry the run with one click. Auto-retry policies are configurable per workflow with exponential backoff up to 5 attempts.
Does Query API Endpoint support batch operations?
Yes. Run Query API Endpoint inside a Loop node to process arrays. TinyCommand handles Tinybird's rate limits automatically so you don't have to throttle manually.
More actions

Other Tinybird actions.

Action
Ingest Events
Sends one or more events to a Tinybird Data Source via the Events API for low-latency analytical ingestion. Use it for product analytics, audit logs, or anything you'll query through Pipes later.
Query API Endpoint in Tinybird — start free