Get the share-safe result
curl --request GET \
--url https://api.rial.io/v1/verifications/{id}/publicimport requests
url = "https://api.rial.io/v1/verifications/{id}/public"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rial.io/v1/verifications/{id}/public', 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://api.rial.io/v1/verifications/{id}/public",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.rial.io/v1/verifications/{id}/public"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.rial.io/v1/verifications/{id}/public")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rial.io/v1/verifications/{id}/public")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "vfy_01HXYZABCDEFGHJKMNPQRSTVWX",
"status": "completed",
"tenant_name": "ACME INSURANCE",
"context_kind": "damage_claim",
"context_summary": "Toyota Corolla front bumper",
"created_at": "2026-05-28T13:00:00.000Z",
"captures_count": 3,
"captures": [
{
"id": "cap_01HXYZABCDEFGHJKMNPQRSTVWX",
"surface": "web",
"content_origin": "live",
"captured_at": "2026-05-28T13:05:00.000Z"
}
],
"verdict": {
"label": "verified"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Verifications
Get the share-safe result
The share-safe view: status and verdict label, nothing else. No key needed.
GET
/
v1
/
verifications
/
{id}
/
public
Get the share-safe result
curl --request GET \
--url https://api.rial.io/v1/verifications/{id}/publicimport requests
url = "https://api.rial.io/v1/verifications/{id}/public"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rial.io/v1/verifications/{id}/public', 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://api.rial.io/v1/verifications/{id}/public",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.rial.io/v1/verifications/{id}/public"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.rial.io/v1/verifications/{id}/public")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rial.io/v1/verifications/{id}/public")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "vfy_01HXYZABCDEFGHJKMNPQRSTVWX",
"status": "completed",
"tenant_name": "ACME INSURANCE",
"context_kind": "damage_claim",
"context_summary": "Toyota Corolla front bumper",
"created_at": "2026-05-28T13:00:00.000Z",
"captures_count": 3,
"captures": [
{
"id": "cap_01HXYZABCDEFGHJKMNPQRSTVWX",
"surface": "web",
"content_origin": "live",
"captured_at": "2026-05-28T13:05:00.000Z"
}
],
"verdict": {
"label": "verified"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Path Parameters
ULID with vfy_ prefix.
Pattern:
^vfy_[0-9A-HJKMNP-TV-Z]{26}$Example:
"vfy_01HXYZABCDEFGHJKMNPQRSTVWX"
Response
Public-safe projection of a completed verification.
Available options:
pending, partially_captured, completed, expired, failed, abandoned Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I