AR.IO LogoAR.IO Documentation
TurboUpload Service

Transaction Data

Transaction status and metadata retrieval

Gets the status of a data item

GET
/tx/:id/status

Response Body

curl -X GET "https://upload.ardrive.io/tx/:id/status"
{
  "status": "CONFIRMED",
  "bundleId": "QpmY8mZmFEC8RxNsgbxSV6e36OF6quIYaPRKzvUco0o",
  "startOffsetInRootBundle": 12345,
  "payloadContentType": "application/json",
  "payloadDataStart": 1024,
  "info": "pending",
  "winc": "1000000"
}
"TX doesn't exist"

Gets the offsets of a data item

GET
/tx/:id/offsets

Path Parameters

idstring

A data item id.

Response Body

curl -X GET "https://upload.ardrive.io/tx/:id/offsets"
{
  "rootBundleId": "J40R1BgFSI1_7p25QW49T7P46BePJJnlDrsFGY1YWbM",
  "startOffsetInRootBundle": 12345,
  "parentDataItemId": "QpmY8mZmFEC8RxNsgbxSV6e36OF6quIYaPRKzvUco0o",
  "startOffsetInParentDataItemPayload": 12345,
  "rawContentLength": 123456,
  "payloadContentType": "application/json",
  "payloadDataStart": 1024
}
"TX doesn't exist"

How is this guide?