Pipes API > API Endpoint service¶
The Pipes API allows you to interact with your Pipes. Several services are included under Pipes:
- Pipes: List, create, update, or delete your Tinybird Pipes.
- API Endpoints: Publish or unpublish your Pipes as API Endpoints.
- Materialized Views and Populates: Create, delete, or populate Materialized Views.
- Scheduled Copy (Copy Pipes API): Create, delete, schedule, and trigger Copy jobs.
New to Pipes? Read the Concepts > Pipes docs.
Materialized Views and Populates¶
- POST /v0/pipes/(.+)/nodes/(.+)/population¶
Populates a Materialized View
curl -H "Authorization: Bearer <PIPE:CREATE token>" \ -X POST "https://api.tinybird.co/v0/pipes/:pipe/nodes/:node/population" \ -d "populate_condition=toYYYYMM(date) = 202203"
The response will not be the final result of the import but a Job. You can check the job status and progress using the Jobs API.
Alternatively you can use a query like this to check the operations related to the populate Job:
SELECT * FROM tinybird.datasources_ops_log WHERE timestamp > now() - INTERVAL 1 DAY AND operation_id IN ( SELECT operation_id FROM tinybird.datasources_ops_log WHERE timestamp > now() - INTERVAL 1 DAY and datasource_id = '{the_datasource_id}' and job_id = '{the_job_id}' ) ORDER BY timestamp ASC
When a populate job fails for the first time, the Materialized View is automatically unlinked. In that case you can get failed population jobs and their errors to fix them with a query like this:
SELECT * FROM tinybird.datasources_ops_log WHERE datasource_id = '{the_datasource_id}' AND pipe_name = '{the_pipe_name}' AND event_type LIKE 'populateview%' AND result = 'error' ORDER BY timestamp ASC
Alternatively you can use the
unlink_on_populate_error='true'
flag to always unlink the Materialized View if the populate job does not work as expected.¶ Key
Type
Description
token
String
Auth token. Ensure it has the
PIPE:CREATE
scope on itpopulate_subset
Float
Optional. Populate with a subset percent of the data (limited to a maximum of 2M rows), this is useful to quickly test a materialized node with some data. The subset must be greater than 0 and lower than 0.1. A subset of 0.1 means a 10 percent of the data in the source Data Source will be used to populate the Materialized View. It has precedence over
populate_condition
populate_condition
String
Optional. Populate with a SQL condition to be applied to the trigger Data Source of the Materialized View. For instance,
populate_condition='date == toYYYYMM(now())'
it’ll populate taking all the rows from the trigger Data Source whichdate
is the current month.populate_condition
is not taken into account if thepopulate_subset
param is present. Including in thepopulate_condition
any column present in the Data Sourceengine_sorting_key
will make the populate job process less data.truncate
String
Optional. Default is
false
. Populates over existing data, useful to populate past data while new data is being ingested. Usetrue
to truncate the Data Source before populating.unlink_on_populate_error
String
Optional. Default is
false
. If the populate job fails the Materialized View is unlinked and new data won’t be ingested in the Materialized View.¶ Code
Description
200
No error
400
Node is not materialized
403
Forbidden. Provided token doesn’t have permissions to append a node to the pipe, it needs
ADMIN
orPIPE:CREATE
404
Pipe not found, Node not found
- POST /v0/pipes/(.+)/nodes/(.+)/materialization¶
Creates a Materialized View
curl \ -H "Authorization: Bearer <PIPE:CREATE token>" \ -X POST "https://api.tinybird.co/v0/pipes/:pipe/nodes/:node/materialization?datasource=my_data_source_name&populate=true"
¶ Key
Type
Description
token
String
Auth token. Ensure it has the
PIPE:CREATE
scope on itdatasource
String
Required. Specifies the name of the destination Data Source where the Materialized View schema is defined. If the Data Source does not exist, it creates automatically with the default settings.
override_datasource
Boolean
Optional. Default
false
When the target Data Source of the Materialized View exists in the Workspace it’ll be overriden by thedatasource
specified in the request.populate
Boolean
Optional. Default
false
. Whentrue
, a job is triggered to populate the destination datasource.populate_subset
Float
Optional. Populate with a subset percent of the data (limited to a maximum of 2M rows), this is useful to quickly test a materialized node with some data. The subset must be greater than 0 and lower than 0.1. A subset of 0.1 means a 10 percent of the data in the source Data Source will be used to populate the Materialized View. Use it together with
populate=true
, it has precedence overpopulate_condition
populate_condition
String
Optional. Populate with a SQL condition to be applied to the trigger Data Source of the Materialized View. For instance,
populate_condition='date == toYYYYMM(now())'
it’ll populate taking all the rows from the trigger Data Source whichdate
is the current month. Use it together withpopulate=true
.populate_condition
is not taken into account if thepopulate_subset
param is present. Including in thepopulate_condition
any column present in the Data Sourceengine_sorting_key
will make the populate job process less data.unlink_on_populate_error
String
Optional. Default is
false
. If the populate job fails the Materialized View is unlinked and new data won’t be ingested in the Materialized View.engine
String
Optional. Engine for destination Materialized View. If the Data Source already exists, the settings are not overriden.
engine_*
String
Optional. Engine parameters and options. Requires the
engine
parameter. If the Data Source already exists, the settings are not overriden. Check Engine Parameters and Options for more detailsSQL query for the materialized node must be sent in the body encoded in utf-8
¶ Code
Description
200
No error
400
Node already being materialized
403
Forbidden. Provided token doesn’t have permissions to append a node to the pipe, it needs
ADMIN
orPIPE:CREATE
404
Pipe not found, Node not found
409
The Materialized View already exists or
override_datasource
cannot be performed
- DELETE /v0/pipes/(.+)/nodes/(.+)/materialization¶
Removes a Materialized View
By removing a Materialized View, nor the Data Source nor the Node are deleted. The Data Source will still be present, but will stop receiving data from the Node.
curl -H "Authorization: Bearer <PIPE:CREATE token>" \ -X DELETE "https://api.tinybird.co/v0/pipes/:pipe/nodes/:node/materialization"
¶ Code
Description
204
No error, Materialized View removed
403
Forbidden. Provided token doesn’t have permissions to append a node to the pipe, it needs
ADMIN
orPIPE:CREATE
404
Pipe not found, Node not found