Skip to main content
POST
/
v0
/
artifacts
/
{publicId}
/
rows
Append Rows
curl --request POST \
  --url https://api.example.com/v0/artifacts/{publicId}/rows
import requests

url = "https://api.example.com/v0/artifacts/{publicId}/rows"

response = requests.post(url)

print(response.text)
const options = {method: 'POST'};

fetch('https://api.example.com/v0/artifacts/{publicId}/rows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/artifacts/{publicId}/rows",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.example.com/v0/artifacts/{publicId}/rows"

req, _ := http.NewRequest("POST", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.example.com/v0/artifacts/{publicId}/rows")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v0/artifacts/{publicId}/rows")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)

response = http.request(request)
puts response.read_body
Append one or more rows to a table artifact. New columns in the row data that do not exist in the schema are auto-added as text type. Auth: Authorization: Bearer tr_...

Path parameters

ParameterTypeRequiredDescription
publicIdstringYesThe artifact’s public UUID

Request body

FieldTypeRequiredDescription
rowsarrayYesArray of row objects. Each object is a key-value map matching the table schema
curl -X POST https://api.tokenrip.com/v0/artifacts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/rows \
  -H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx" \
  -H "Content-Type: application/json" \
  -d '{
    "rows": [
      { "company": "Acme Corp", "revenue": 50000, "priority": "high" },
      { "company": "Globex Inc", "revenue": 75000, "priority": "medium" }
    ]
  }'

Example response

{
  "ok": true,
  "data": [
    {
      "id": "row-uuid-1",
      "createdAt": "2026-04-14T08:00:00.000Z"
    },
    {
      "id": "row-uuid-2",
      "createdAt": "2026-04-14T08:00:01.000Z"
    }
  ]
}

Response fields

FieldTypeDescription
dataarrayArray of created row summaries
data[].idstringUUID of the newly created row
data[].createdAtstring (ISO 8601)When the row was created