curl --request POST \
--url https://pria.praxislxp.com/api/user/runpod/warm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"aimodelId": "<string>",
"institution": "<string>",
"demandId": "<string>",
"release": false
}
'import requests
url = "https://pria.praxislxp.com/api/user/runpod/warm"
payload = {
"aimodelId": "<string>",
"institution": "<string>",
"demandId": "<string>",
"release": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
aimodelId: '<string>',
institution: '<string>',
demandId: '<string>',
release: false
})
};
fetch('https://pria.praxislxp.com/api/user/runpod/warm', 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://pria.praxislxp.com/api/user/runpod/warm",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'aimodelId' => '<string>',
'institution' => '<string>',
'demandId' => '<string>',
'release' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pria.praxislxp.com/api/user/runpod/warm"
payload := strings.NewReader("{\n \"aimodelId\": \"<string>\",\n \"institution\": \"<string>\",\n \"demandId\": \"<string>\",\n \"release\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pria.praxislxp.com/api/user/runpod/warm")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"aimodelId\": \"<string>\",\n \"institution\": \"<string>\",\n \"demandId\": \"<string>\",\n \"release\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pria.praxislxp.com/api/user/runpod/warm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"aimodelId\": \"<string>\",\n \"institution\": \"<string>\",\n \"demandId\": \"<string>\",\n \"release\": false\n}"
response = http.request(request)
puts response.read_bodyStart, reconcile, or release bounded RunPod warm-up demand
Explicit demand only; this operation can allocate paid GPU capacity. Reuse the same demandId on reconciliation requests (approximately every ten seconds). Each demand has a fixed server-bounded deadline; polling does not extend it indefinitely. Readiness includes acquisition phase and deadline. A hostless job may transfer to another approved datacenter only after the exact owned warm-up job is safely cancelled. Existing initializing or ready hosts are reused. Ownership uncertainty blocks new launches. No speculative dual-datacenter warming or endpoint-wide queue purge is performed. Set release to true to detach only this caller’s demand; it never terminates a serving worker or cancels another caller’s inference. Client-supplied endpoint ids, job ids and deadlines are not acquisition authority.
curl --request POST \
--url https://pria.praxislxp.com/api/user/runpod/warm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"aimodelId": "<string>",
"institution": "<string>",
"demandId": "<string>",
"release": false
}
'import requests
url = "https://pria.praxislxp.com/api/user/runpod/warm"
payload = {
"aimodelId": "<string>",
"institution": "<string>",
"demandId": "<string>",
"release": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
aimodelId: '<string>',
institution: '<string>',
demandId: '<string>',
release: false
})
};
fetch('https://pria.praxislxp.com/api/user/runpod/warm', 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://pria.praxislxp.com/api/user/runpod/warm",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'aimodelId' => '<string>',
'institution' => '<string>',
'demandId' => '<string>',
'release' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pria.praxislxp.com/api/user/runpod/warm"
payload := strings.NewReader("{\n \"aimodelId\": \"<string>\",\n \"institution\": \"<string>\",\n \"demandId\": \"<string>\",\n \"release\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pria.praxislxp.com/api/user/runpod/warm")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"aimodelId\": \"<string>\",\n \"institution\": \"<string>\",\n \"demandId\": \"<string>\",\n \"release\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pria.praxislxp.com/api/user/runpod/warm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"aimodelId\": \"<string>\",\n \"institution\": \"<string>\",\n \"demandId\": \"<string>\",\n \"release\": false\n}"
response = http.request(request)
puts response.read_bodyAuthorizations
JWT token passed in authorization header
Body
Response
success plus data containing model state and bounded acquisition metadata; inspect acquisition phase/error, not HTTP success alone.
Was this page helpful?