Run Single Job
curl --request POST \
--url https://api.promptloop.com/v0.1/tasks/{task_id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"inputs": [
"<string>"
],
"task_version": 0
}
'import requests
url = "https://api.promptloop.com/v0.1/tasks/{task_id}"
payload = {
"inputs": ["<string>"],
"task_version": 0
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({inputs: ['<string>'], task_version: 0})
};
fetch('https://api.promptloop.com/v0.1/tasks/{task_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": {
"data_json": {
"propertyKey": "propertyValue",
"anotherKey": "anotherValue"
},
"list_data_json": [
{
"column1Key": "row1Value1",
"column2Key": "row1Value2"
},
{
"column1Key": "row2Value1",
"column2Key": "row2Value2"
}
],
"list": true,
"job_id": "<string>",
"error_detected": true
},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}{
"status": "error",
"data": {},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}{
"status": "error",
"data": {},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}{
"status": "error",
"data": {},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}Tasks
Run Single Job
Runs a single job with the provided task and inputs and awaits the result. Tasks have a default timeout of 1 minute. For longer running tasks, consider using async batches instead.
POST
/
v0.1
/
tasks
/
{task_id}
Run Single Job
curl --request POST \
--url https://api.promptloop.com/v0.1/tasks/{task_id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"inputs": [
"<string>"
],
"task_version": 0
}
'import requests
url = "https://api.promptloop.com/v0.1/tasks/{task_id}"
payload = {
"inputs": ["<string>"],
"task_version": 0
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({inputs: ['<string>'], task_version: 0})
};
fetch('https://api.promptloop.com/v0.1/tasks/{task_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": {
"data_json": {
"propertyKey": "propertyValue",
"anotherKey": "anotherValue"
},
"list_data_json": [
{
"column1Key": "row1Value1",
"column2Key": "row1Value2"
},
{
"column1Key": "row2Value1",
"column2Key": "row2Value2"
}
],
"list": true,
"job_id": "<string>",
"error_detected": true
},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}{
"status": "error",
"data": {},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}{
"status": "error",
"data": {},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}{
"status": "error",
"data": {},
"message": "<string>",
"error": {
"code": 123,
"details": "<string>"
},
"request_id": "<string>"
}Authorizations
Path Parameters
Body
application/json
