Skip to main content
GET
/
v1
/
validate
/
{run_id}
/
status
Get Validation Status
curl --request GET \
  --url https://api.example.com/v1/validate/{run_id}/status
import requests

url = "https://api.example.com/v1/validate/{run_id}/status"

response = requests.get(url)

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

fetch('https://api.example.com/v1/validate/{run_id}/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "progress": 123,
  "estimated_time_remaining": 123,
  "report_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Headers

authorization
string | null

Path Parameters

run_id
string<uuid>
required

Response

Successful Response

run_id
string<uuid>
required
status
string
required
progress
number | null
estimated_time_remaining
integer | null
report_id
string<uuid> | null