Get loomloom run detail with optional Market context
curl --request GET \
--url https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run} \
--header 'Authorization: <api-key>'import requests
url = "https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}', 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://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$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://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"artifacts": [
{
"accessUrl": "<string>",
"artifactId": "<string>",
"createdAtUnix": 123,
"inlineText": "<string>",
"mimeType": "<string>",
"portName": "<string>",
"sourceRowIndex": 123,
"stepId": "<string>",
"taskId": "<string>"
}
],
"market": {
"actualExecutionCostT": 123,
"estimatedBuyerPayableT": 123,
"estimatedExecutionCostT": 123,
"finalBuyerPayableT": 123,
"listingId": "<string>",
"listingVersionId": "<string>",
"pricingRuleVersion": "<string>",
"runId": "<string>",
"runTransactionId": "<string>",
"skillName": "<string>",
"taskFixedFeeT": 123,
"transactionStatus": "<string>"
},
"run": {
"actualCostT": 123,
"cancelledTasks": 123,
"completedAtUnix": 123,
"completedTasks": 123,
"createdAtUnix": 123,
"definitionHash": "<string>",
"displayName": "<string>",
"estimatedCostT": 123,
"failedTasks": 123,
"firstErrorMessage": "<string>",
"inputFilename": "<string>",
"market": {
"actualExecutionCostT": 123,
"estimatedBuyerPayableT": 123,
"estimatedExecutionCostT": 123,
"finalBuyerPayableT": 123,
"listingId": "<string>",
"listingVersionId": "<string>",
"pricingRuleVersion": "<string>",
"runId": "<string>",
"runTransactionId": "<string>",
"skillName": "<string>",
"taskFixedFeeT": 123,
"transactionStatus": "<string>"
},
"runId": "<string>",
"sourceType": "<string>",
"startedAtUnix": 123,
"status": "<string>",
"templateKey": "<string>",
"templateName": "<string>",
"templateUuid": "<string>",
"totalTasks": 123,
"updatedAtUnix": 123
},
"tasks": [
{
"artifactCount": 123,
"errorMessage": "<string>",
"sourceRowIndex": 123,
"status": "<string>",
"taskId": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Get loomloom run detail with optional Market context
GET
/
loom
/
v1
/
users
/
me
/
runs
/
{run}
Get loomloom run detail with optional Market context
curl --request GET \
--url https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run} \
--header 'Authorization: <api-key>'import requests
url = "https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}', 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://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$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://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://loomloom.cogfoundry.ai/loom/v1/users/me/runs/{run}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"artifacts": [
{
"accessUrl": "<string>",
"artifactId": "<string>",
"createdAtUnix": 123,
"inlineText": "<string>",
"mimeType": "<string>",
"portName": "<string>",
"sourceRowIndex": 123,
"stepId": "<string>",
"taskId": "<string>"
}
],
"market": {
"actualExecutionCostT": 123,
"estimatedBuyerPayableT": 123,
"estimatedExecutionCostT": 123,
"finalBuyerPayableT": 123,
"listingId": "<string>",
"listingVersionId": "<string>",
"pricingRuleVersion": "<string>",
"runId": "<string>",
"runTransactionId": "<string>",
"skillName": "<string>",
"taskFixedFeeT": 123,
"transactionStatus": "<string>"
},
"run": {
"actualCostT": 123,
"cancelledTasks": 123,
"completedAtUnix": 123,
"completedTasks": 123,
"createdAtUnix": 123,
"definitionHash": "<string>",
"displayName": "<string>",
"estimatedCostT": 123,
"failedTasks": 123,
"firstErrorMessage": "<string>",
"inputFilename": "<string>",
"market": {
"actualExecutionCostT": 123,
"estimatedBuyerPayableT": 123,
"estimatedExecutionCostT": 123,
"finalBuyerPayableT": 123,
"listingId": "<string>",
"listingVersionId": "<string>",
"pricingRuleVersion": "<string>",
"runId": "<string>",
"runTransactionId": "<string>",
"skillName": "<string>",
"taskFixedFeeT": 123,
"transactionStatus": "<string>"
},
"runId": "<string>",
"sourceType": "<string>",
"startedAtUnix": 123,
"status": "<string>",
"templateKey": "<string>",
"templateName": "<string>",
"templateUuid": "<string>",
"totalTasks": 123,
"updatedAtUnix": 123
},
"tasks": [
{
"artifactCount": 123,
"errorMessage": "<string>",
"sourceRowIndex": 123,
"status": "<string>",
"taskId": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}