You won't get the same transaction benefits as using a worker but something like ``` INSERT INTO 't

You won't get the same transaction benefits as using a worker but something like
INSERT INTO 'tablename' ('column1', 'column2') VALUES
  ('data1', 'data2'),
  ('data3', 'data4'),
  ('data5', 'data6'),
  ('data7', 'data8');`

as a statement should work. Do also keep in mind that the API has a rate limit of 1200 requests per 5 minutes which is another reason deploying your own worker as an REST endpoint is recommended
Was this page helpful?