Get the verification report as PDF
Returns the rendered verification report for a terminal run as a PDF document, suitable for archiving or sharing with the subject.
Operator notes recorded during review are deliberately excluded from this document.
curl -X GET "https://api.deepvue.link/v1/runs/123e4567-e89b-12d3-a456-426614174000/report.pdf" \
-H "Content-Type: application/json" \
-H "client-id: YOUR_API_KEY" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://api.deepvue.link/v1/runs/123e4567-e89b-12d3-a456-426614174000/report.pdf"
headers = {
"Content-Type": "application/json",
"client-id": "YOUR_API_KEY",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api.deepvue.link/v1/runs/123e4567-e89b-12d3-a456-426614174000/report.pdf", {
method: "GET",
headers: {
"Content-Type": "application/json",
"client-id": "YOUR_API_KEY",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://api.deepvue.link/v1/runs/123e4567-e89b-12d3-a456-426614174000/report.pdf", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("client-id", "YOUR_API_KEY")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.deepvue.link/v1/runs/123e4567-e89b-12d3-a456-426614174000/report.pdf')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['client-id'] = 'YOUR_API_KEY'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{}
{
"error": "missing credentials: send client-id + x-api-key headers"
}
{
"error": "invalid Deepvue credentials"
}
{
"error": "Not Found",
"message": "The requested resource was not found",
"code": 404
}
{
"error": "Service Unavailable",
"message": "The service is temporarily unavailable. Please try again later",
"code": 503
}
GET
/v1/runs/{id}/report.pdfGET
Base URLstring
Target server for requests. Edit to use your own host.
API Key (header: client-id)
client-idstring
RequiredYour Deepvue client identifier.
Your Deepvue client identifier.
API Key (header: x-api-key)
x-api-keystring
RequiredYour Deepvue API key. Secret - keep it server-side.
Your Deepvue API key. Secret - keep it server-side.
path
idstring
RequiredThe run's UUID.
Format: uuid
Request Preview
Response
Response will appear here after sending the request
Authentication
header
client-idstring
RequiredAPI Key for authentication. Your Deepvue client identifier.
header
x-api-keystring
RequiredAPI Key for authentication. Your Deepvue API key. Secret - keep it server-side.
Path Parameters
idstring
RequiredThe run's UUID.
Responses
The rendered report.
Was this page helpful?